车间能级提升-智能设备管理系统
朱桂飞
2025-01-09 3e8f7f239bedae0b4f04a1ac6bd443ba6298f73c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package org.dromara.workflow.service;
 
import org.dromara.workflow.domain.vo.WfFormManageVo;
import org.dromara.workflow.domain.bo.WfFormManageBo;
import org.dromara.common.mybatis.core.page.TableDataInfo;
import org.dromara.common.mybatis.core.page.PageQuery;
 
import java.util.Collection;
import java.util.List;
 
/**
 * 表单管理Service接口
 *
 * @author may
 * @date 2024-03-29
 */
public interface IWfFormManageService {
 
    /**
     * 查询表单管理
     *
     * @param id 主键
     * @return 结果
     */
    WfFormManageVo queryById(Long id);
 
    /**
     * 查询表单管理
     *
     * @param ids 主键
     * @return 结果
     */
    List<WfFormManageVo> queryByIds(List<Long> ids);
 
    /**
     * 查询表单管理列表
     *
     * @param bo        参数
     * @param pageQuery 分页
     * @return 结果
     */
    TableDataInfo<WfFormManageVo> queryPageList(WfFormManageBo bo, PageQuery pageQuery);
 
    /**
     * 查询表单管理列表
     *
     * @return 结果
     */
    List<WfFormManageVo> selectList();
    /**
     * 查询表单管理列表
     *
     * @param bo 参数
     * @return 结果
     */
    List<WfFormManageVo> queryList(WfFormManageBo bo);
 
    /**
     * 新增表单管理
     *
     * @param bo 参数
     * @return 结果
     */
    Boolean insertByBo(WfFormManageBo bo);
 
    /**
     * 修改表单管理
     *
     * @param bo 参数
     * @return 结果
     */
    Boolean updateByBo(WfFormManageBo bo);
 
    /**
     * 批量删除表单管理信息
     *
     * @param ids 主键
     * @return 结果
     */
    Boolean deleteByIds(Collection<Long> ids);
}