1234567891011121314151617
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaGoods struct {
  6. GoodsId string `xorm:"not null pk VARCHAR(64)"`
  7. GoodsName string `xorm:"VARCHAR(50)"`
  8. OrgId string `xorm:"VARCHAR(64)"`
  9. CaseId string `xorm:"VARCHAR(64)"`
  10. TypeId string `xorm:"VARCHAR(64)"`
  11. Price string `xorm:"DECIMAL(8,2)"`
  12. Status int `xorm:"SMALLINT(6)"`
  13. CreateDate time.Time `xorm:"DATETIME"`
  14. CreateUser string `xorm:"VARCHAR(64)"`
  15. }