Package net.risesoft.api
Class PrintLogApiImpl
- java.lang.Object
-
- net.risesoft.api.PrintLogApiImpl
-
- All Implemented Interfaces:
PrintLogApi
@Validated @RestController @RequestMapping(value="/services/rest/printLog", produces="application/json") public class PrintLogApiImpl extends Object implements PrintLogApi打印日志接口- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description PrintLogApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<List<PrintLogModel>>getPrintLogList(String tenantId, String processSerialNumber)获取打印日志列表net.risesoft.pojo.Y9Result<Object>savePrintLog(String tenantId, PrintLogModel printLog)保存打印日志
-
-
-
Method Detail
-
getPrintLogList
public net.risesoft.pojo.Y9Result<List<PrintLogModel>> getPrintLogList(@RequestParam String tenantId, @RequestParam String processSerialNumber)
获取打印日志列表- Specified by:
getPrintLogListin interfacePrintLogApi- Parameters:
tenantId- 租户IDprocessSerialNumber- 流程实例ID- Returns:
- Y9Result
- >
-
savePrintLog
public net.risesoft.pojo.Y9Result<Object> savePrintLog(@RequestParam String tenantId, @RequestBody PrintLogModel printLog)
保存打印日志- Specified by:
savePrintLogin interfacePrintLogApi- Parameters:
tenantId- 租户IDprintLog- 打印日志
-
-