类 ExtendedContentController


  • @RestController
    @RequestMapping(value="/extendedContent",
                    produces="application/json")
    public class ExtendedContentController
    extends Object
    作者:
    qinman, zhangchongjie
    Date:
    2022/12/20
    • 构造器详细资料

      • ExtendedContentController

        public ExtendedContentController()
    • 方法详细资料

      • checkSignContent

        @RequestMapping("/checkSignContent")
        public net.risesoft.pojo.Y9Result<Boolean> checkSignContent​(@RequestParam(required=false)
                                                                    String category,
                                                                    @RequestParam(required=false)
                                                                    String processSerialNumber)
        是否填写内容
        参数:
        processSerialNumber - 流程编号
        category - 分类
        返回:
        Map
      • contentList

        @RequestMapping("/contentList")
        public net.risesoft.pojo.Y9Result<List<Map<String,​Object>>> contentList​(@RequestParam
                                                                                      String processSerialNumber,
                                                                                      @RequestParam
                                                                                      String itembox,
                                                                                      @RequestParam
                                                                                      String taskId,
                                                                                      @RequestParam
                                                                                      String category)
        获取内容列表
        参数:
        processSerialNumber - 流程编号
        itembox - 列表类型
        taskId - 任务ID
        category - 分类
        返回:
        List>
      • delete

        @RequestMapping("/delete")
        public net.risesoft.pojo.Y9Result<Object> delete​(@RequestParam
                                                         String id)
        删除内容
        参数:
        id - 内容ID
        返回:
        Map
      • saveOrUpdate

        @PostMapping("/saveOrUpdate")
        public net.risesoft.pojo.Y9Result<Object> saveOrUpdate​(ExtendedContent content)
        保存内容
        参数:
        content - 扩展内容实体类
        返回:
        Map