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

package db
import "leit.com/leit_seat_aps/common"
//供应组分配表
type Me_supplygroup_assignment struct {
Finr int `xorm:"pk"`
Supplygroupid string `xorm:"pk"`
Fsupplygroupid string `xorm:"pk"`
Pos int // 位置号
Assignfactor1 int // 分配因子
Assignfactor2 int
Lastmodif string
Lastuser string
Credatuz string
}
func (t *Me_supplygroup_assignment) Clipped() {
common.TrimStruct(t, *t)
}
func (t *Me_supplygroup_assignment) TableName() string {
return "me_supplygroup_assignment"
}