ta_coupon_target.go 231B

12345678
  1. package model
  2. type TaCouponTarget struct {
  3. TargetId string `xorm:"not null pk VARCHAR(64)"`
  4. TargetType string `xorm:"not null pk VARCHAR(64)"`
  5. CouponId string `xorm:"VARCHAR(64)"`
  6. TargetName string `xorm:"VARCHAR(255)"`
  7. }