PrintContractVO.go 433 B

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