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.

26 lines
511 B

  1. package db
  2. import "leit.com/leit_seat_aps/common"
  3. // 车型分配的属性
  4. type Me_carmodel_atcodlst struct {
  5. Finr int `xorm:"pk"`
  6. Carmodelid string `xorm:"pk"`
  7. Pos int `xorm:"pk"`
  8. Attrcode int
  9. Mandatory int
  10. Verifyrule string
  11. Attrvalue1 string
  12. Attrvalue2 string
  13. Lastmodif string
  14. Lastuser string
  15. Credatuz string
  16. }
  17. func (t *Me_carmodel_atcodlst) Clipped() {
  18. common.TrimStruct(t, *t)
  19. }
  20. func (t *Me_carmodel_atcodlst) TableName() string {
  21. return "me_carmodel_atcodlst"
  22. }