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

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