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 db
|
|
|
|
import "leit.com/leit_seat_aps/common"
|
|
|
|
// 车型分配的属性
|
|
type Me_carmodel_atcodlst struct {
|
|
Finr int `xorm:"pk"`
|
|
Carmodelid string `xorm:"pk"`
|
|
Pos int `xorm:"pk"`
|
|
Attrcode int
|
|
Mandatory int
|
|
Verifyrule string
|
|
Attrvalue1 string
|
|
Attrvalue2 string
|
|
Lastmodif string
|
|
Lastuser string
|
|
Credatuz string
|
|
}
|
|
|
|
func (t *Me_carmodel_atcodlst) Clipped() {
|
|
common.TrimStruct(t, *t)
|
|
}
|
|
|
|
func (t *Me_carmodel_atcodlst) TableName() string {
|
|
return "me_carmodel_atcodlst"
|
|
}
|