|
|
- 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"
- }
|