task_conf.go 250 B

12345678910111213
  1. package task
  2. type TaskConf struct {
  3. Id int `json:"id"`
  4. TaskId int `json:"task_id"`
  5. User string `json:"user"`
  6. AddFeeNotice int `json:"add_fee_notice"`
  7. }
  8. func (TaskConf) TableName() string {
  9. return "task_conf"
  10. }