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_supplygroup_atcodlst struct {
|
|
Finr int `xorm:"pk"`
|
|
Supplygroupid string `xorm:"pk"`
|
|
Attrcode int `xorm:"pk"`
|
|
Mandatory int // 必须存在
|
|
Verifyrule string // 验证规则
|
|
Attrvalue1 string
|
|
Attrvalue2 string
|
|
Lastmodif string
|
|
Lastuser string
|
|
Credatuz string
|
|
}
|
|
|
|
func (t *Me_supplygroup_atcodlst) Clipped() {
|
|
common.TrimStruct(t, *t)
|
|
}
|
|
|
|
func (t *Me_supplygroup_atcodlst) TableName() string {
|
|
return "me_supplygroup_atcodlst"
|
|
}
|