hpds_jkw_web/model/matterEventParams.go

20 lines
1.1 KiB
Go
Raw Permalink Normal View History

2023-01-06 10:09:23 +08:00
package model
type MatterEventParams struct {
ParamsId int64 `xorm:"not null pk autoincr INT(11)" json:"paramsId"`
MatterId int64 `xorm:"not null INT(11) default 0" json:"matterId"`
VersionId int64 `xorm:"not null INT(11) default 0" json:"versionId"`
EventId int64 `xorm:"not null INT(11) default 0" json:"eventId"`
ParamName string `xorm:"varchar(200) not null" json:"paramName"` //参数名称
ParamIdentifier string `xorm:"varchar(64) not null" json:"paramIdentifier"` //参数标识符
2023-01-10 10:01:42 +08:00
ParamDesc string `xorm:"VARCHAR(200)" json:"paramDesc"` //参数描述
2023-01-06 10:09:23 +08:00
DataType int `xorm:"not null INT(11) default 0" json:"dataType"` //数据类型
MaxValue string `xorm:"varchar(200) " json:"maxValue"`
MinValue string `xorm:"varchar(200)" json:"minValue"`
StepValue string `xorm:"varchar(200) " json:"stepValue"`
Unit string `xorm:"varchar(200) " json:"unit"`
2023-01-06 14:38:22 +08:00
Status int `xorm:"not null SMALLINT default 0" json:"status"`
2023-01-06 10:09:23 +08:00
CreateAt int64 `xorm:"created" json:"createAt"`
UpdateAt int64 `xorm:"updated" json:"updateAt"`
}