增加了会员配置首单优惠价格

This commit is contained in:
2024-08-13 14:46:18 +08:00
parent 64ddac108b
commit fbb5b0bfd6
4 changed files with 25 additions and 3 deletions
+1
View File
@@ -13,6 +13,7 @@ type SystemMember struct {
Price float64 `gorm:"column:price;type:decimal(10,2);default:0.00;comment:价格(原价)" json:"price"`
DiscountPrice *float64 `gorm:"column:discount_price;type:decimal(10,2);comment:优惠价格" json:"discount_price"`
DiscountEndTime *LocalTime `gorm:"column:discount_end_time;type:datetime;comment:优惠截止时间" json:"discount_end_time"`
FirstTimePrice *float64 `gorm:"column:first_time_price;type:decimal(10,2);comment:首次购买价格" json:"first_time_price"`
Model
}