面包店
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.

преди 9 месеца
123456789101112
  1. package model
  2. import "time"
  3. type PlanCommission struct {
  4. Id int `json:"id" xorm:"not null pk autoincr comment('分佣方案ID,现在只允许1,2') INT(10)"`
  5. PlanName string `json:"plan_name" xorm:"not null default '' comment('方案名称') VARCHAR(64)"`
  6. Memo string `json:"memo" xorm:"not null default '' comment('备注') VARCHAR(256)"`
  7. Mode string `json:"mode" xorm:"not null default '' comment('模式,lv_all级差按总佣金,lv_self级差按自购') VARCHAR(16)"`
  8. Data string `json:"data" xorm:"not null default '' comment('里面包含等级分配方案数据') VARCHAR(3000)"`
  9. UpdateAt time.Time `json:"update_at" xorm:"default CURRENT_TIMESTAMP TIMESTAMP"`
  10. }