1、自动续费

This commit is contained in:
2025-07-28 18:15:40 +08:00
parent f552188ff9
commit 426a79da49
23 changed files with 921 additions and 29 deletions

View File

@ -24,6 +24,7 @@ type SmsPhone struct {
ExpireTime *time.Time `json:"expireTime" gorm:"type:datetime;comment:过期时间"`
Actived int `json:"actived" gorm:"type:tinyint;comment:是否激活(长期租赁如果第一次没接收到验证码 则不会激活号码) 1-未激活 2-已激活 3-已失效"`
Price decimal.Decimal `json:"price" gorm:"type:decimal(10,2);comment:价格"`
AutoRenewal int `json:"autoRenewal" gorm:"type:tinyint;comment:是否自动续费 1-自动续费 2-手动续费"`
models.ModelTime
models.ControlBy
}