| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // CustCustomer is the golang structure for table cust_customer.
- type CustCustomer struct {
- Id int `orm:"id,primary" json:"id"` // 主键
- CustCode string `orm:"cust_code" json:"custCode"` // 客户编号
- CustName string `orm:"cust_name" json:"custName"` // 客户名称
- AbbrName string `orm:"abbr_name" json:"abbrName"` // 助记名
- CustAddress string `orm:"cust_address" json:"custAddress"` // 详细地址
- CustProvinceId int `orm:"cust_province_id" json:"custProvinceId"` // 所在省ID
- CustProvince string `orm:"cust_province" json:"custProvince"` // 所在省
- CustCityId int `orm:"cust_city_id" json:"custCityId"` // 所在市ID
- CustCity string `orm:"cust_city" json:"custCity"` // 所在市
- CustRegionId int `orm:"cust_region_id" json:"custRegionId"` // 所在区县ID
- CustRegion string `orm:"cust_region" json:"custRegion"` // 所在区县
- CustIndustry string `orm:"cust_industry" json:"custIndustry"` // 客户行业
- CustLevel string `orm:"cust_level" json:"custLevel"` // 客户级别(10 重点客户 20 普通客户 30非优客户)
- CustStatus string `orm:"cust_status" json:"custStatus"` // 客户状态(10 待领取 20 领取审批 30 已领取)
- CustSource string `orm:"cust_source" json:"custSource"` // 客户来源
- IsPublic string `orm:"is_public" json:"isPublic"` // 公海客户(10是20否)
- DeptId int `orm:"dept_id" json:"deptId"` // 所属部门ID
- DeptName string `orm:"dept_name" json:"deptName"` // 所属部门
- SalesId int `orm:"sales_id" json:"salesId"` // 所属销售ID
- SalesName string `orm:"sales_name" json:"salesName"` // 所属销售
- FollowUpDate *gtime.Time `orm:"follow_up_date" json:"followUpDate"` // 最后跟进时间
- FollowUpMan string `orm:"follow_up_man" json:"followUpMan"` // 最后跟进人
- 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"` // 删除时间
- }
|