base_distributor.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // BaseDistributor is the golang structure for table base_distributor.
  9. type BaseDistributor struct {
  10. Id int `orm:"id,primary" json:"id"` // 主键
  11. DistCode string `orm:"dist_code" json:"distCode"` // 经销商编码
  12. DistName string `orm:"dist_name" json:"distName"` // 经销商名称
  13. AbbrName string `orm:"abbr_name" json:"abbrName"` // 助记名
  14. DistDesc string `orm:"dist_desc" json:"distDesc"` // 经销商说明
  15. DistBoss string `orm:"dist_boss" json:"distBoss"` // 负责人
  16. DistBossPhone string `orm:"dist_boss_phone" json:"distBossPhone"` // 负责人电话
  17. ProvinceId int `orm:"province_id" json:"provinceId"` // 所属省份ID
  18. ProvinceDesc string `orm:"province_desc" json:"provinceDesc"` // 所属省份
  19. BusinessScope string `orm:"business_scope" json:"businessScope"` // 业务范围
  20. BelongSaleId int `orm:"belong_sale_id" json:"belongSaleId"` // 归属销售ID
  21. BelongSale string `orm:"belong_sale" json:"belongSale"` // 归属销售
  22. Capital float64 `orm:"capital" json:"capital"` // 注册资金
  23. SaleNum int `orm:"sale_num" json:"saleNum"` // 销售人数
  24. InvoiceHeader string `orm:"invoice_header" json:"invoiceHeader"` // 开票抬头
  25. Remark string `orm:"remark" json:"remark"` // 备注
  26. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  27. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  28. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  29. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  30. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  31. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  32. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  33. }