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

4 years ago
  1. package models
  2. type PmWoNotelst struct {
  3. Finr int `json:"finr" xorm:"not null pk INT(4)"`
  4. Maintwoid string `json:"maintwoid" xorm:"not null pk VARCHAR(18)"`
  5. Mainservicenr int `json:"mainservicenr" xorm:"not null pk INT(4)"`
  6. Pos int `json:"pos" xorm:"not null pk INT(4)"`
  7. Note string `json:"note" xorm:"not null VARCHAR(250)"`
  8. Lastmodif string `json:"lastmodif" xorm:"not null VARCHAR(14)"`
  9. Lastuser string `json:"lastuser" xorm:"not null VARCHAR(20)"`
  10. Credatuz string `json:"credatuz" xorm:"not null VARCHAR(14)"`
  11. }