package workflow //"time" type ActiProcessVM struct { ProcessKey string `json:"processKey"` BusinessKey string `json:"businessKey"` ProcessInstanceId string `json:"processInstanceId"` UserNames string `json:"userNames"` } type ActiCompleteVM struct { ProcessKey string `json:"processKey"` BusinessKey string `json:"businessKey"` UserNames string `json:"userNames"` UserId string `json:"userId"` Result string `json:"result"` Remarks string `json:"remarks"` CallbackUrl string `json:"callbackUrl"` } type ActiMyTasksVM struct { ProcessKey string `json:"processKey"` UserId string `json:"userId"` } type ActiMyTasksRetWithTimeVM struct { BusinessKey string `json:"businessKey"` WorkflowId string `json:"workflowId"` CreateTime int64 `json:"createTime"` } type ActiHistoricTask struct { BusinessKey string `json:"businessKey"` TaskName string `json:"taskName"` Assignee string `json:"assignee"` Users string `json:"users"` Result string `json:"result"` Remarks string `json:"remarks"` StartTime int64 `json:"startTime"` EndTime int64 `json:"endTime"` ProcessInstanceId string `json:"processInstanceId"` HistoryImg string `json:"historyImg"` } type AposeVM struct { AddressUrl string `json:"addressUrl"` Watermark string `json:"watermark"` } type WordTemplateVM struct { Datas map[string]interface{} `json:"datas"` TemplateUrl string `json:"templateUrl"` FileName string `json:"fileName"` } type WordTemplateWatermarkVM struct { Datas map[string]interface{} `json:"datas"` TemplateUrl string `json:"templateUrl"` FileName string `json:"fileName"` Watermark string `json:"watermark"` } type MultiActiCompleteVM struct { ProcessKey string `json:"processKey"` BusinessKey string `json:"businessKey"` UserNames string `json:"userNames"` UserId string `json:"userId"` Result string `json:"result"` Remarks string `json:"remarks"` MultiOrgAudits []MultiOrgAuditVM `json:"multiOrgAudits"` CallbackUrl string `json:"callbackUrl"` } type MultiOrgAuditVM struct { OrgId string `json:"orgId"` OrgName string `json:"orgName"` UserIds string `json:"userIds"` } const ( //供方准入流程图 OIL_SUPPLIER_APPLY string = "oil_supplier_apply_1" //一级物资供方准入流程图 OIL_FIRST_SUPPLIER_APPLY string = "oil_first_supplier_apply" //二级物资供方准入流程图 OIL_SECOND_SUPPLIER_APPLY string = "oil_second_supplier_apply" //企业用户准入流程图 OIL_ENUSER_SUPPLIER_APPLY string = "oil_enuser_supplier_apply" //企业用户一级物资准入流程图 OIL_FIRST_ENUSER_SUPPLIER_APPLY string = "oil_first_enuser_supplier_apply" //企业用户二级物资准入流程图 OIL_SECOND_ENUSER_SUPPLIER_APPLY string = "oil_second_enuser_supplier_apply" //企业用户一级物资增项流程图 OIL_FIRST_ENUSER_APPEND_APPLY string = "oil_first_enuser_append_apply" //企业用户二级物资增项流程图 OIL_SECOND_ENUSER_APPEND_APPLY string = "oil_second_enuser_append_apply" //企业用户增项流程图 OIL_ENUSER_APPEND_APPLY string = "oil_enuser_append_apply" //一级物资供方增项流程图 OIL_FIRST_APPEND_APPLY string = "oil_first_append_apply" //二级物资供方准入流程图 OIL_SECOND_APPEND_APPLY string = "oil_second_append_apply" // 分办 SUB_OFFICE string = "SUB_OFFICE" //业务步骤编码 初审 FIRST_TRIAL string = "FIRST_TRIAL" // 复审 SECOND_TRIAL string = "SECOND_TRIAL" //专业处室接收 PROF_RECE string = "PROF_RECE" //业务处室专业审核 PROF_AUDIT string = "PROF_AUDIT" // 集中审批 PROF_CONCENT string = "PROF_CONCENT" // 企业法规处审核 PROF_REGULATION string = "PROF_REGULATION" //年审流程图 OIL_AUDIT_APPLY string = "oil_audit_apply" //供方增项流程图 OIL_APPEND_APPLY string = "oil_append_apply" //信息变更流程图 OIL_INFO_CHANGE string = "oil_info_change" //资质变更流程图 OIL_QUAL_CHANGE string = "oil_qual_change" ) type TableDetailData struct { DataList []interface{} `json:"dataList"` StartRow int `json:"startRow"` NeedDelRow int `json:"needDelRow"` ReverseRow int `json:"reverseRow"` Cols []string `json:"cols"` Merge []string `json:"merge"` ColsNum int `json:"colsNum"` }