GAAS GFrame项目web后台
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
541 B

  1. package models
  2. type AttributeValst struct {
  3. Finr int `json:"finr" xorm:"not null pk INT(4)"`
  4. Attrnr int `json:"attrnr" xorm:"not null pk INT(4)"`
  5. Pos int `json:"pos" xorm:"not null pk INT(4)"`
  6. Attrvalue string `json:"attrvalue" xorm:"not null VARCHAR(60)"`
  7. Descr string `json:"descr" xorm:"not null VARCHAR(60)"`
  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. }