| 1234567891011 |
- package common
- type PrintContractVo struct {
- // 【电子签约文件id】电子签约文件id
- ContractId *int64 `json:"contractId,omitempty"`
- // 【电子签约文件主题】电子签约文件主题
- ContractName string `json:"contractName,omitempty"`
- // 【该电子签约文件关联的所有打印任务集合】该电子签约文件关联的所有打印任务集合
- PrintJobs []PrintJobVo `json:"printJobs,omitempty"`
- }
|