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.

25 lines
568 B

  1. package db
  2. import "leit.com/leit_seat_aps/common"
  3. //供应组属性表
  4. type Me_supplygroup_atcodlst struct {
  5. Finr int `xorm:"pk"`
  6. Supplygroupid string `xorm:"pk"`
  7. Attrcode int `xorm:"pk"`
  8. Mandatory int // 必须存在
  9. Verifyrule string // 验证规则
  10. Attrvalue1 string
  11. Attrvalue2 string
  12. Lastmodif string
  13. Lastuser string
  14. Credatuz string
  15. }
  16. func (t *Me_supplygroup_atcodlst) Clipped() {
  17. common.TrimStruct(t, *t)
  18. }
  19. func (t *Me_supplygroup_atcodlst) TableName() string {
  20. return "me_supplygroup_atcodlst"
  21. }