ctr_contract_event.go 2.1 KB

12345678910111213141516171819202122232425262728293031323334
  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. // CtrContractEvent is the golang structure for table ctr_contract_event.
  9. type CtrContractEvent struct {
  10. Id int `orm:"id,primary" json:"id"` // 主键ID
  11. EventId int `orm:"event_id" json:"eventId"` // 事件ID
  12. EventCode string `orm:"event_code" json:"eventCode"` // 事件编码
  13. EventType string `orm:"event_type" json:"eventType"` // 事件类型
  14. CustId int `orm:"cust_id" json:"custId"` // 客户ID
  15. CustName string `orm:"cust_name" json:"custName"` // 客户名称
  16. ProductLine string `orm:"product_line" json:"productLine"` // 产品线
  17. IsBig string `orm:"is_big" json:"isBig"` // 是否大项目
  18. ContractId int `orm:"contract_id" json:"contractId"` // 合同ID
  19. ContractCode string `orm:"contract_code" json:"contractCode"` // 合同编号
  20. ContractName string `orm:"contract_name" json:"contractName"` // 合同名称
  21. InchargeId int `orm:"incharge_id" json:"inchargeId"` // 负责人ID
  22. InchargeName string `orm:"incharge_name" json:"inchargeName"` // 负责人(销售)
  23. Remark string `orm:"remark" json:"remark"` // 备注
  24. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建人ID
  25. CreatedName string `orm:"created_name" json:"createdName"` // 创建人姓名
  26. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  27. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新人ID
  28. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人姓名
  29. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  30. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间(软删除)
  31. }