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

12 lines
697 B

  1. package model
  2. type ExportRecords struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Name string `json:"name" xorm:"not null default '' comment('名称') VARCHAR(255)"`
  5. DownloadPath string `json:"download_path" xorm:"not null default '' comment('下载地址') VARCHAR(255)"`
  6. Kind int `json:"kind" xorm:"not null default 0 comment('类型(1:订单列表 2:退款申请表 3:预定统计表)') TINYINT(1)"`
  7. ReqContent string `json:"req_content" xorm:"TEXT"`
  8. CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
  9. UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
  10. }