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
527 B

package db
import "leit.com/leit_seat_aps/common"
//拣料单模板属性分配
type Pln_picktemplate_attrlst struct {
Finr int `xorm:"pk"`
Picktemplateid string `xorm:"pk"`
Attrcode int `xorm:"pk"`
Pos int
Planqty int
Mandatory int
Lastmodif string
Lastuser string
Credatuz string
}
func (t *Pln_picktemplate_attrlst) Clipped() {
common.TrimStruct(t, *t)
}
func (t *Pln_picktemplate_attrlst) TableName() string {
return "pln_picktemplate_attrlst"
}