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