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

  1. package db
  2. import "leit.com/leit_seat_aps/common"
  3. //零件产品属性表
  4. type Me_part_atcodlst struct {
  5. Finr int `xorm:"pk"`
  6. Partid string `xorm:"pk"`
  7. Projnr string `xorm:"pk"`
  8. Attrcode int `xorm:"pk"`
  9. Version int `xorm:"pk"`
  10. Attrvalue string
  11. Lastmodif string
  12. Lastuser string
  13. Credatuz string
  14. }
  15. func (t *Me_part_atcodlst) Clipped() {
  16. common.TrimStruct(t, *t)
  17. }
  18. func (t *Me_part_atcodlst) TableName() string {
  19. return "me_part_atcodlst"
  20. }