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

  1. package db
  2. import "leit.com/leit_seat_aps/common"
  3. //拣料单模板属性分配
  4. type Pln_picktemplate_attrlst struct {
  5. Finr int `xorm:"pk"`
  6. Picktemplateid string `xorm:"pk"`
  7. Attrcode int `xorm:"pk"`
  8. Pos int
  9. Planqty int
  10. Mandatory int
  11. Lastmodif string
  12. Lastuser string
  13. Credatuz string
  14. }
  15. func (t *Pln_picktemplate_attrlst) Clipped() {
  16. common.TrimStruct(t, *t)
  17. }
  18. func (t *Pln_picktemplate_attrlst) TableName() string {
  19. return "pln_picktemplate_attrlst"
  20. }