一物一码
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.

plan_withdraw.go 399 B

2 年之前
12345678
  1. package model
  2. type PlanWithdraw struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(10)"`
  4. PlanName string `json:"plan_name" xorm:"not null default '' comment('方案名称') VARCHAR(64)"`
  5. Memo string `json:"memo" xorm:"not null default '' comment('方案描述') VARCHAR(512)"`
  6. State int `json:"state" xorm:"not null default 1 comment('0关闭,1开启') TINYINT(1)"`
  7. }