| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package contract
- import (
- "dashoo.cn/micro/app/model/contract/internal"
- "dashoo.cn/opms_libary/request"
- "github.com/gogf/gf/os/gtime"
- )
- // CtrContractCollection is the golang structure for table ctr_contract_collection.
- type CtrContractCollection internal.CtrContractCollection
- // Fill with you ideas below.
- type CtrContractCollectionListReq struct {
- request.PageReq
- SearchText string `json:"searchText"` // 合同编号,客户名称
- PlanId int `json:"planId"` // 合同回款计划
- CustId int `json:"custId"` // 关联客户
- CustName string `json:"custName"` // 客户名称
- ContractId int `json:"contractId"` // 关联合同
- ContractCode string `json:"contractCode"` // 合同编号
- // CollectionDatetime *gtime.Time `json:"collectionDatetime"` // 回款日期
- // CollectionAmount float64 `json:"collectionAmount"` // 回款金额
- CollectionType string `json:"collectionType"` // 回款方式
- ApproStatus string `json:"approStatus"` // 审核状态 10 未回款 20 已回款
- // ContractAmount float64 `json:"contractAmount"` // 合同金额
- }
- type CtrContractCollectionAddReq struct {
- PlanId int `json:"planId"` // 合同回款计划
- // CustId int `json:"custId"` // 关联客户
- // CustName string `json:"custName"` // 客户名称
- ContractId int `json:"contractId"` // 关联合同
- // ContractCode string `json:"contractCode"` // 合同编号
- CollectionDatetime *gtime.Time `json:"collectionDatetime"` // 回款日期
- CollectionAmount float64 `json:"collectionAmount"` // 回款金额
- CollectionType string `json:"collectionType"` // 回款方式
- // ApproStatus string `json:"approStatus"` // 审核状态 10 未回款 20 已回款
- // ContractAmount float64 `json:"contractAmount"` // 合同金额
- Remark string `json:"remark"` // 备注
- }
- type CtrContractCollectionUpdateReq struct {
- Id int `json:"id" v:"required#请输入Id"`
- // PlanId int `json:"planId"` // 合同回款计划
- // CustId int `json:"custId"` // 关联客户
- // CustName string `json:"custName"` // 客户名称
- // ContractId int `json:"contractId"` // 关联合同
- // ContractCode string `json:"contractCode"` // 合同编号
- CollectionDatetime *gtime.Time `json:"collectionDatetime"` // 回款日期
- CollectionAmount *float64 `json:"collectionAmount"` // 回款金额
- CollectionType string `json:"collectionType"` // 回款方式
- ApproStatus string `json:"approStatus"` // 审核状态 10 未回款 20 已回款
- // ContractAmount float64 `json:"contractAmount"` // 合同金额
- Remark *string `json:"remark"`
- }
|