Package net.risesoft.api
Class UrgeInfoApiImpl
- java.lang.Object
-
- net.risesoft.api.UrgeInfoApiImpl
-
- All Implemented Interfaces:
UrgeInfoApi
@RestController @RequestMapping(value="/services/rest/urgeInfo", produces="application/json") public class UrgeInfoApiImpl extends Object implements UrgeInfoApi- Since:
- 9.6.8
- Author:
- : qinman
- Date:
- : 2024-12-24
-
-
Constructor Summary
Constructors Constructor Description UrgeInfoApiImpl()
-
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<UrgeInfoModel>>findByProcessSerialNumber(String tenantId, String processSerialNumber)net.risesoft.pojo.Y9Result<Object>save(String tenantId, String userId, String processSerialNumber, String msgContent)
-
-
-
Method Detail
-
save
public net.risesoft.pojo.Y9Result<Object> save(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String processSerialNumber, @RequestParam String msgContent)
- Specified by:
savein interfaceUrgeInfoApi
-
findByProcessSerialNumber
public net.risesoft.pojo.Y9Result<List<UrgeInfoModel>> findByProcessSerialNumber(String tenantId, String processSerialNumber)
- Specified by:
findByProcessSerialNumberin interfaceUrgeInfoApi
-
deleteById
public net.risesoft.pojo.Y9Result<Object> deleteById(String tenantId, String id)
- Specified by:
deleteByIdin interfaceUrgeInfoApi
-
-