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

4 years ago
  1. package models
  2. type PmAttributeValst struct {
  3. Finr int `json:"pm_attribute_valst-finr" xorm:"not null pk INT(4)"`
  4. Attrnr int `json:"pm_attribute_valst-attrnr" xorm:"not null pk INT(4)"`
  5. Pos int `json:"pm_attribute_valst-pos" xorm:"not null pk INT(4)"`
  6. Attrvalue string `json:"pm_attribute_valst-attrvalue" xorm:"not null VARCHAR(60)"`
  7. Descr string `json:"pm_attribute_valst-descr" xorm:"not null VARCHAR(60)"`
  8. Lastmodif string `json:"pm_attribute_valst-lastmodif" xorm:"not null VARCHAR(14)"`
  9. Lastuser string `json:"pm_attribute_valst-lastuser" xorm:"not null VARCHAR(20)"`
  10. Credatuz string `json:"pm_attribute_valst-credatuz" xorm:"not null VARCHAR(14)"`
  11. }