2025-04-19 14:59:19 +08:00
|
|
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2025-05-10 16:59:41 +08:00
|
|
|
|
"platform/web/globals/orm"
|
2025-04-19 14:59:19 +08:00
|
|
|
|
|
2025-05-20 17:14:07 +08:00
|
|
|
|
"github.com/shopspring/decimal"
|
2025-04-19 14:59:19 +08:00
|
|
|
|
"gorm.io/gorm"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
const TableNameCoupon = "coupon"
|
|
|
|
|
|
|
|
|
|
|
|
// Coupon mapped from table <coupon>
|
|
|
|
|
|
type Coupon struct {
|
2025-05-26 10:57:39 +08:00
|
|
|
|
ID int32 `gorm:"column:id;type:integer;primaryKey;autoIncrement:true;comment:优惠券ID" json:"id"` // 优惠券ID
|
|
|
|
|
|
UserID *int32 `gorm:"column:user_id;type:integer;comment:用户ID" json:"user_id"` // 用户ID
|
|
|
|
|
|
Code string `gorm:"column:code;type:character varying(255);not null;comment:优惠券代码" json:"code"` // 优惠券代码
|
|
|
|
|
|
Remark *string `gorm:"column:remark;type:character varying(255);comment:优惠券备注" json:"remark"` // 优惠券备注
|
|
|
|
|
|
Amount decimal.Decimal `gorm:"column:amount;type:numeric(12,2);not null;comment:优惠券金额" json:"amount"` // 优惠券金额
|
|
|
|
|
|
MinAmount decimal.Decimal `gorm:"column:min_amount;type:numeric(12,2);not null;comment:最低消费金额" json:"min_amount"` // 最低消费金额
|
|
|
|
|
|
Status int32 `gorm:"column:status;type:integer;not null;comment:优惠券状态:0-未使用,1-已使用,2-已过期" json:"status"` // 优惠券状态:0-未使用,1-已使用,2-已过期
|
|
|
|
|
|
ExpireAt *orm.LocalDateTime `gorm:"column:expire_at;type:timestamp without time zone;comment:过期时间" json:"expire_at"` // 过期时间
|
|
|
|
|
|
CreatedAt *orm.LocalDateTime `gorm:"column:created_at;type:timestamp without time zone;default:CURRENT_TIMESTAMP;comment:创建时间" json:"created_at"` // 创建时间
|
|
|
|
|
|
UpdatedAt *orm.LocalDateTime `gorm:"column:updated_at;type:timestamp without time zone;default:CURRENT_TIMESTAMP;comment:更新时间" json:"updated_at"` // 更新时间
|
|
|
|
|
|
DeletedAt gorm.DeletedAt `gorm:"column:deleted_at;type:timestamp without time zone;comment:删除时间" json:"deleted_at"` // 删除时间
|
2025-04-19 14:59:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// TableName Coupon's table name
|
|
|
|
|
|
func (*Coupon) TableName() string {
|
|
|
|
|
|
return TableNameCoupon
|
|
|
|
|
|
}
|