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_man_serviceparam.go

11 lines
376 B

package models
type TManServiceparam struct {
Id string `xorm:"not null VARCHAR(50)"`
ServiceId string `xorm:"not null VARCHAR(50)"`
ParamName string `xorm:"not null VARCHAR(50)"`
ParamValue string `xorm:"default 'NULL' VARCHAR(100)"`
DefaultValue string `xorm:"default 'NULL' VARCHAR(100)"`
Memo string `xorm:"default 'NULL' VARCHAR(100)"`
}