supplierfile.go 961 B

1234567891011121314151617181920212223242526
  1. package supplierfile
  2. import (
  3. "time"
  4. )
  5. type OilSupplierFile struct {
  6. Id int `xorm:"not null pk autoincr INT(10)"`
  7. AppendClassId int `xorm:"INT(10)"`
  8. SupplierCertSubId int `xorm:"INT(10)"`
  9. NeedFileType string `xorm:"VARCHAR(50)"`
  10. NeedFileCode string `xorm:"VARCHAR(20)"`
  11. FileExt string `xorm:"VARCHAR(10)"`
  12. FileSize int `xorm:"INT(10)"`
  13. EffectDate time.Time `xorm:"DATETIME"`
  14. FileUrl string `xorm:"VARCHAR(100)"`
  15. OtherRemark string `xorm:"VARCHAR(500)"`
  16. Remark string `xorm:"VARCHAR(500)"`
  17. IsDelete int `xorm:"INT(10)"`
  18. CreateOn time.Time `xorm:"DATETIME"`
  19. CreateUserId int `xorm:"INT(10)"`
  20. CreateBy string `xorm:"VARCHAR(50)"`
  21. ModifiedOn time.Time `xorm:"DATETIME"`
  22. ModifiedUserId int `xorm:"INT(10)"`
  23. ModifiedBy string `xorm:"VARCHAR(50)"`
  24. }