| 12345678910111213141516171819202122232425262728293031323334353637 |
- // ==========================================================================
- // 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"
- )
- // CtrContractAppend is the golang structure for table ctr_contract_append.
- type CtrContractAppend internal.CtrContractAppend
- // Fill with you ideas below.
- type CtrContractAppendListReq struct {
- request.PageReq
- ContractId int `json:"contractId"` // 关联合同
- FileName string `json:"fileName"` // 文件名称
- }
- type CtrContractAppendAddReq struct {
- ContractId int `json:"contractId"` // 关联合同
- FileName string `json:"fileName"` // 文件名称
- FileType string `json:"fileType"` // 文件类型
- FileUrl string `json:"fileUrl"` // 文件地址
- Remark string `json:"remark"` // 备注
- }
- type CtrContractAppendUpdateReq struct {
- Id int `json:"id" v:"required#请输入Id"`
- ContractId int `json:"contractId"` // 关联合同
- FileName string `json:"fileName"` // 文件名称
- FileType string `json:"fileType"` // 文件类型
- FileUrl string `json:"fileUrl"` // 文件地址
- Remark *string `json:"remark"`
- }
|