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 Pln_picktemplate_itemlst struct {
|
|
Finr int `xorm:"pk"`
|
|
Picktemplateid string `xorm:"pk"`
|
|
Partid string `xorm:"pk"`
|
|
Pos int
|
|
Planqty int
|
|
Mandatory int
|
|
Lastmodif string
|
|
Lastuser string
|
|
Credatuz string
|
|
}
|
|
|
|
func (t *Pln_picktemplate_itemlst) Clipped() {
|
|
common.TrimStruct(t, *t)
|
|
}
|
|
|
|
func (t *Pln_picktemplate_itemlst) TableName() string {
|
|
return "pln_picktemplate_itemlst"
|
|
}
|