Package net.risesoft.api
Class TypeSettingInfoApiImpl
- java.lang.Object
-
- net.risesoft.api.TypeSettingInfoApiImpl
-
- All Implemented Interfaces:
TypeSettingInfoApi
@RestController @RequestMapping(value="/services/rest/typeSetting", produces="application/json") public class TypeSettingInfoApiImpl extends Object implements TypeSettingInfoApi发文单排版信息接口- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description TypeSettingInfoApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<Object>delTypeSetting(String tenantId, String id)删除排版信息net.risesoft.pojo.Y9Result<List<TypeSettingInfoModel>>getList(String tenantId, String processSerialNumber)获取排版信息net.risesoft.pojo.Y9Result<TypeSettingInfoModel>getTypeSetting(String tenantId, String id)获取排版信息net.risesoft.pojo.Y9Result<Object>saveTypeSetting(String tenantId, String processSerialNumber, String jsonData)保存排版信息net.risesoft.pojo.Y9Result<Object>updateFile(String tenantId, String id, String fileId, String fileType)更新排版信息net.risesoft.pojo.Y9Result<Object>updateTypeSetting(String tenantId, String processSerialNumber, String jsonData)修改排版信息
-
-
-
Method Detail
-
delTypeSetting
public net.risesoft.pojo.Y9Result<Object> delTypeSetting(@RequestParam String tenantId, @RequestParam String id)
删除排版信息- Specified by:
delTypeSettingin interfaceTypeSettingInfoApi- Parameters:
tenantId- 租户idid- 排版信息id- Returns:
Y9Result<List<Object>>
-
getList
public net.risesoft.pojo.Y9Result<List<TypeSettingInfoModel>> getList(@RequestParam String tenantId, @RequestParam String processSerialNumber)
获取排版信息- Specified by:
getListin interfaceTypeSettingInfoApi- Parameters:
tenantId- 租户idprocessSerialNumber- 流程编号- Returns:
Y9Result<List<TypeSettingInfoModel>>
-
getTypeSetting
public net.risesoft.pojo.Y9Result<TypeSettingInfoModel> getTypeSetting(@RequestParam String tenantId, @RequestParam String id)
获取排版信息- Specified by:
getTypeSettingin interfaceTypeSettingInfoApi- Parameters:
tenantId- 租户idid- 排版信息id- Returns:
Y9Result<TypeSettingInfoModel>
-
saveTypeSetting
public net.risesoft.pojo.Y9Result<Object> saveTypeSetting(@RequestParam String tenantId, @RequestParam String processSerialNumber, @RequestParam String jsonData)
保存排版信息- Specified by:
saveTypeSettingin interfaceTypeSettingInfoApi- Parameters:
tenantId- 租户idprocessSerialNumber- 流程编号jsonData- 排版信息- Returns:
Y9Result<Object>
-
updateTypeSetting
public net.risesoft.pojo.Y9Result<Object> updateTypeSetting(@RequestParam String tenantId, @RequestParam String processSerialNumber, @RequestParam String jsonData)
修改排版信息- Specified by:
updateTypeSettingin interfaceTypeSettingInfoApi- Parameters:
tenantId- 租户idprocessSerialNumber- 流程编号jsonData- 排版信息- Returns:
Y9Result<Object>
-
updateFile
public net.risesoft.pojo.Y9Result<Object> updateFile(@RequestParam String tenantId, @RequestParam String id, @RequestParam String fileId, @RequestParam String fileType)
更新排版信息- Specified by:
updateFilein interfaceTypeSettingInfoApi- Parameters:
tenantId- 租户idid- 排版信息idfileId- 文件id- Returns:
Y9Result<Object>
-
-