Package net.risesoft.api
Class OpinionCopyApiImpl
- java.lang.Object
-
- net.risesoft.api.OpinionCopyApiImpl
-
- All Implemented Interfaces:
OpinionCopyApi
@Validated @RestController @RequestMapping(value="/services/rest/opinionCopy", produces="application/json") public class OpinionCopyApiImpl extends Object implements OpinionCopyApi- Since:
- 9.6.8
- Author:
- : qinman
- Date:
- : 2025-02-12
-
-
Constructor Summary
Constructors Constructor Description OpinionCopyApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<Object>deleteById(String tenantId, String id)net.risesoft.pojo.Y9Result<List<OpinionCopyModel>>findByProcessSerialNumber(String tenantId, String userId, String orgUnitId, String processSerialNumber)net.risesoft.pojo.Y9Result<OpinionCopyModel>saveOrUpdate(String tenantId, String userId, String orgUnitId, OpinionCopyModel opinionCopyModel)
-
-
-
Method Detail
-
findByProcessSerialNumber
public net.risesoft.pojo.Y9Result<List<OpinionCopyModel>> findByProcessSerialNumber(String tenantId, String userId, String orgUnitId, String processSerialNumber)
- Specified by:
findByProcessSerialNumberin interfaceOpinionCopyApi
-
saveOrUpdate
public net.risesoft.pojo.Y9Result<OpinionCopyModel> saveOrUpdate(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String orgUnitId, @RequestBody OpinionCopyModel opinionCopyModel)
- Specified by:
saveOrUpdatein interfaceOpinionCopyApi
-
deleteById
public net.risesoft.pojo.Y9Result<Object> deleteById(@RequestParam String tenantId, @RequestParam String id)
- Specified by:
deleteByIdin interfaceOpinionCopyApi
-
-