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.
|
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)"`
|
|
}
|