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.

22 lines
489 B

  1. package db
  2. import "leit.com/leit_seat_aps/common"
  3. // 车型所分配的零件族
  4. type Me_carmodel_supplygrouplst struct {
  5. Finr int `xorm:"pk"`
  6. Carmodelid string `xorm:"pk"`
  7. Supplygroupid string `xorm:"pk"`
  8. Pos int
  9. Lastmodif string
  10. Lastuser string
  11. Credatuz string
  12. }
  13. func (t *Me_carmodel_supplygrouplst) Clipped() {
  14. common.TrimStruct(t, *t)
  15. }
  16. func (t *Me_carmodel_supplygrouplst) TableName() string {
  17. return "me_carmodel_supplygrouplst"
  18. }