互动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
2.6 KiB

5 years ago
  1. package models
  2. import "time"
  3. const UserRedPackTableName = TableNamePrefix + "user_red_pack"
  4. // todo: 红包号码
  5. type UserRedPack struct {
  6. Id int64 `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. MchBillno string `json:"mch_billno" xorm:"not null default('') comment('商户订单号') VARCHAR(28)"`
  8. SendName string `json:"send_name" xorm:"not null default('') comment('商户名称') VARCHAR(32)"`
  9. ReOpenid string `json:"re_openid" xorm:"not null default '' comment('接收红包用户openid') VARCHAR(32)"`
  10. TotalAmount int `json:"total_amount" xorm:"not null default 0 comment('付款金额, 单位分') INT(11)"`
  11. TotalNum int `json:"total_num" xorm:"not null default 0 comment('红包发放总人数') INT(11)"`
  12. SceneId int `json:"scene_id" xorm:"not null default 0 comment('场景id') INT(11)"`
  13. SendListid string `json:"send_listid" xorm:"not null default '' comment('红包订单的微信单号') VARCHAR(32)"`
  14. Status string `json:"status" xorm:"not null default '' comment('红包状态') VARCHAR(16)"`
  15. HbType string `json:"hb_type" xorm:"not null default '' comment('红包类型') VARCHAR(32)"`
  16. Reason string `json:"reason" xorm:"not null default '' comment('失败原因') VARCHAR(32)"`
  17. SendTime string `json:"send_time" xorm:"not null default '' comment('红包发送时间') VARCHAR(32)"`
  18. RefundTime string `json:"refund_time" xorm:"not null default '' comment('红包退款时间') VARCHAR(32)"`
  19. RefundAmount string `json:"refund_amount" xorm:"not null default '' comment('红包退款金额') VARCHAR(32)"`
  20. ResultCode string `json:"result_code" xorm:"not null default '' comment('业务结果') VARCHAR(16)"`
  21. ErrCode string `json:"err_code" xorm:"not null default '' comment('错误代码') VARCHAR(32)"`
  22. ErrCodeDes string `json:"err_code_des" xorm:"not null default '' comment('错误代码描述') VARCHAR(128)"`
  23. UserId int64 `json:"user_id" xorm:"not null default 0 comment('用户id') INT(11)"`
  24. ActivityId int64 `json:"activity_id" xorm:"not null default 0 comment('互动id') INT(11)"`
  25. IsDelete bool `json:"is_delete" xorm:"not null default(0) comment('是否删除') TINYINT(1)" description:"是否删除"`
  26. CreatedAt time.Time `json:"created_at" xorm:"not null created comment('创建时间') DATETIME" description:"创建时间"`
  27. UpdatedAt time.Time `json:"updated_at" xorm:"not null updated comment('更新时间') DATETIME" description:"更新时间"`
  28. }
  29. func (t *UserRedPack) TableName() string {
  30. return UserRedPackTableName
  31. }