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