| 12345678910111213141516171819202122232425262728293031323334 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // CtrContractEvent is the golang structure for table ctr_contract_event.
- type CtrContractEvent struct {
- Id int `orm:"id,primary" json:"id"` // 主键ID
- EventId int `orm:"event_id" json:"eventId"` // 事件ID
- EventCode string `orm:"event_code" json:"eventCode"` // 事件编码
- EventType string `orm:"event_type" json:"eventType"` // 事件类型
- CustId int `orm:"cust_id" json:"custId"` // 客户ID
- CustName string `orm:"cust_name" json:"custName"` // 客户名称
- ProductLine string `orm:"product_line" json:"productLine"` // 产品线
- IsBig string `orm:"is_big" json:"isBig"` // 是否大项目
- ContractId int `orm:"contract_id" json:"contractId"` // 合同ID
- ContractCode string `orm:"contract_code" json:"contractCode"` // 合同编号
- ContractName string `orm:"contract_name" json:"contractName"` // 合同名称
- InchargeId int `orm:"incharge_id" json:"inchargeId"` // 负责人ID
- InchargeName string `orm:"incharge_name" json:"inchargeName"` // 负责人(销售)
- Remark string `orm:"remark" json:"remark"` // 备注
- CreatedBy int `orm:"created_by" json:"createdBy"` // 创建人ID
- CreatedName string `orm:"created_name" json:"createdName"` // 创建人姓名
- CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
- UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新人ID
- UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人姓名
- UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
- DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间(软删除)
- }
|