| 1234567891011121314151617181920212223242526272829303132 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // CtrContractCollection is the golang structure for table ctr_contract_collection.
- type CtrContractCollection struct {
- Id int `orm:"id,primary" json:"id"` // 主键
- PlanId int `orm:"plan_id" json:"planId"` // 合同回款计划
- CustId int `orm:"cust_id" json:"custId"` // 关联客户
- CustName string `orm:"cust_name" json:"custName"` // 客户名称
- ContractId int `orm:"contract_id" json:"contractId"` // 关联合同
- ContractCode string `orm:"contract_code" json:"contractCode"` // 合同编号
- CollectionDatetime *gtime.Time `orm:"collection_datetime" json:"collectionDatetime"` // 回款日期
- CollectionAmount float64 `orm:"collection_amount" json:"collectionAmount"` // 回款金额
- CollectionType string `orm:"collection_type" json:"collectionType"` // 回款方式
- ApproStatus string `orm:"appro_status" json:"approStatus"` // 审核状态 10 未回款 20 已回款
- ContractAmount float64 `orm:"contract_amount" json:"contractAmount"` // 合同金额
- 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"` // 删除时间
- }
|