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.
dsMin/dsFillOut/models/t_transfer_apply_status.go

8 lines
301 B

package models
type TTransferApplyStatus struct {
ApplyStatusId int64 `xorm:"not null pk comment('申请ID') INT(11)"`
ApplyStatusName string `xorm:"not null comment('申请状态') VARCHAR(32)"`
ForCheck int64 `xorm:"not null default 1 comment('审核时是否可见') INT(11)"`
}