SJA APS后端代码
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.

24 lines
477 B

package db
import "leit.com/leit_seat_aps/common"
//零件产品属性表
type Me_part_atcodlst struct {
Finr int `xorm:"pk"`
Partid string `xorm:"pk"`
Projnr string `xorm:"pk"`
Attrcode int `xorm:"pk"`
Version int `xorm:"pk"`
Attrvalue string
Lastmodif string
Lastuser string
Credatuz string
}
func (t *Me_part_atcodlst) Clipped() {
common.TrimStruct(t, *t)
}
func (t *Me_part_atcodlst) TableName() string {
return "me_part_atcodlst"
}