ctr_contract_collection.go 2.3 KB

1234567891011121314151617181920212223242526272829303132
  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. // CtrContractCollection is the golang structure for table ctr_contract_collection.
  9. type CtrContractCollection struct {
  10. Id int `orm:"id,primary" json:"id"` // 主键
  11. PlanId int `orm:"plan_id" json:"planId"` // 合同回款计划
  12. CustId int `orm:"cust_id" json:"custId"` // 关联客户
  13. CustName string `orm:"cust_name" json:"custName"` // 客户名称
  14. ContractId int `orm:"contract_id" json:"contractId"` // 关联合同
  15. ContractCode string `orm:"contract_code" json:"contractCode"` // 合同编号
  16. CollectionDatetime *gtime.Time `orm:"collection_datetime" json:"collectionDatetime"` // 回款日期
  17. CollectionAmount float64 `orm:"collection_amount" json:"collectionAmount"` // 回款金额
  18. CollectionType string `orm:"collection_type" json:"collectionType"` // 回款方式
  19. ApproStatus string `orm:"appro_status" json:"approStatus"` // 审核状态 10 未回款 20 已回款
  20. ContractAmount float64 `orm:"contract_amount" json:"contractAmount"` // 合同金额
  21. Remark string `orm:"remark" json:"remark"` // 备注
  22. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  23. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  24. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  25. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  26. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  27. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  28. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  29. }