fusenapi/model/gmodel/fs_coupon_gen.go

29 lines
1.7 KiB
Go
Raw Normal View History

2023-06-19 01:53:35 +00:00
package gmodel
2023-06-16 11:04:13 +00:00
import (
"gorm.io/gorm"
)
// fs_coupon 代金券(暂未使用)
type FsCoupon struct {
2023-06-19 10:27:31 +00:00
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
2023-08-23 07:08:45 +00:00
UserId *int64 `gorm:"default:0;" json:"user_id"` // 用户ID 0暂时未绑定用户
Sn *string `gorm:"default:'';" json:"sn"` //
2023-06-19 10:27:31 +00:00
Type *int64 `gorm:"default:0;" json:"type"` // 类型 1代金券 2折扣券 3满减券
Amount *int64 `gorm:"default:0;" json:"amount"` // 代金券金额、折扣比例、满减金额
MinAmount *int64 `gorm:"default:0;" json:"min_amount"` // 满足条件的最小金额 0:不限制
MaxAmount *int64 `gorm:"default:0;" json:"max_amount"` // 最多优惠的金额 0不限制
Stime *int64 `gorm:"default:0;" json:"stime"` // 开始时间 0立即生效
Etime *int64 `gorm:"default:0;" json:"etime"` // 结束时间 0永久有效
Exclude *int64 `gorm:"default:2;" json:"exclude"` // 是否可以与其他优惠券同时使用 1可以 2不可以
2023-08-23 07:08:45 +00:00
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
GetTime *int64 `gorm:"default:0;" json:"get_time"` // 上架时间
2023-06-19 10:27:31 +00:00
Status *int64 `gorm:"default:0;" json:"status"` // 状态 是否可用 是否已绑定到订单
2023-06-16 11:04:13 +00:00
}
type FsCouponModel struct {
db *gorm.DB
name string
}
2023-06-16 11:04:13 +00:00
func NewFsCouponModel(db *gorm.DB) *FsCouponModel { return &FsCouponModel{db: db, name: "fs_coupon"} }