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

package models
type PmWoNotelst struct {
Finr int `json:"finr" xorm:"not null pk INT(4)"`
Maintwoid string `json:"maintwoid" xorm:"not null pk VARCHAR(18)"`
Mainservicenr int `json:"mainservicenr" xorm:"not null pk INT(4)"`
Pos int `json:"pos" xorm:"not null pk INT(4)"`
Note string `json:"note" xorm:"not null VARCHAR(250)"`
Lastmodif string `json:"lastmodif" xorm:"not null VARCHAR(14)"`
Lastuser string `json:"lastuser" xorm:"not null VARCHAR(20)"`
Credatuz string `json:"credatuz" xorm:"not null VARCHAR(14)"`
}