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_partrule_qtyassign struct {
|
|
Finr int `xorm:"pk"`
|
|
Partid string `xorm:"pk"`
|
|
Projnr string `xorm:"pk"`
|
|
Ruleid string `xorm:"pk"`
|
|
Pos int `xorm:"pk"`
|
|
Supplygroupid string
|
|
Assignqty int
|
|
Lastmodif string
|
|
Lastuser string
|
|
Credatuz string
|
|
}
|
|
|
|
func (t *Me_partrule_qtyassign) Clipped() {
|
|
common.TrimStruct(t, *t)
|
|
}
|
|
|
|
func (t *Me_partrule_qtyassign) TableName() string {
|
|
return "me_partrule_qtyassign"
|
|
}
|