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

  1. package db
  2. import "leit.com/leit_seat_aps/common"
  3. //供应组分配表
  4. type Me_supplygroup_assignment struct {
  5. Finr int `xorm:"pk"`
  6. Supplygroupid string `xorm:"pk"`
  7. Fsupplygroupid string `xorm:"pk"`
  8. Pos int // 位置号
  9. Assignfactor1 int // 分配因子
  10. Assignfactor2 int
  11. Lastmodif string
  12. Lastuser string
  13. Credatuz string
  14. }
  15. func (t *Me_supplygroup_assignment) Clipped() {
  16. common.TrimStruct(t, *t)
  17. }
  18. func (t *Me_supplygroup_assignment) TableName() string {
  19. return "me_supplygroup_assignment"
  20. }