ta_card_coupon_channel.go 308B

123456789
  1. package model
  2. type TaCardCouponChannel struct {
  3. CardCouponChannelId string `xorm:"not null pk VARCHAR(64)"`
  4. CardCouponType string `xorm:"VARCHAR(32)"`
  5. ChannelId string `xorm:"VARCHAR(64)"`
  6. CardCouponId string `xorm:"VARCHAR(64)"`
  7. Status int `xorm:"SMALLINT(6)"`
  8. }