contract.go 861 B

123456789101112131415161718192021222324
  1. package contract
  2. //套餐详情(自定义表格类数据)
  3. type AddContractServiceDetailReq struct {
  4. CanEdit bool `json:"CanEdit" description:"是否可编辑"`
  5. Type string `json:"Type" description:"类型"`
  6. Value string `json:"Value" description:"类型"`
  7. ValueId []int `json:"ValueId" description:"类型"`
  8. HeadName string `json:"HeadName" description:"表头名称"`
  9. Tag string `json:"Tag" description:"表头名称"`
  10. RowDisable bool `json:"RowDisable" description:"该行是否禁用操作"`
  11. RowName string `json:"RowName" description:"该行关联名称"`
  12. }
  13. //上传签回合同请求
  14. type UploadCheckBackFileReq struct {
  15. FileUrl string `description:"签回合同url"`
  16. ContractId int `description:"合同id"`
  17. }
  18. //作废合同请求
  19. type InvalidReq struct {
  20. ContractId int `description:"合同id"`
  21. }