GAAS 广汽安道拓GFrame金属件MOM项目
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.

12 lines
764 B

  1. package models
  2. type PmTemplateServicelst struct {
  3. Finr int `json:"pm_template_servicelst-finr" xorm:"not null pk INT(4)"`
  4. Maintemplatenr int `json:"pm_template_servicelst-maintemplatenr" xorm:"not null pk INT(4)"`
  5. Mainservicenr int `json:"pm_template_servicelst-mainservicenr" xorm:"not null pk INT(4)"`
  6. Pos int `json:"pm_template_servicelst-pos" xorm:"not null SMALLINT(2)"`
  7. Lastmodif string `json:"pm_template_servicelst-lastmodif" xorm:"not null VARCHAR(14)"`
  8. Lastuser string `json:"pm_template_servicelst-lastuser" xorm:"not null VARCHAR(20)"`
  9. Credatuz string `json:"pm_template_servicelst-credatuz" xorm:"not null VARCHAR(14)"`
  10. Descr string `json:"pm_template_servicelst-descr" xorm:"-"`
  11. }