zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1 package cn.autoform.web.mapper.process;
Z 2
3 import org.apache.ibatis.annotations.Mapper;
4 import org.apache.ibatis.annotations.Param;
5
6 import cn.autoform.db.entity.ProcessNode;
7
8 @Mapper
9 public interface ProcessNodeMapper {
10     
11     /** 
12      * 修改节点信息
13      */
14     int updateNode(ProcessNode node);
15     
16     /**
17      * 添加新实例节点
18      */
19     int addNode(ProcessNode node);
20     
21     /**
22      * 查看节点信息
23      */
24     ProcessNode getNode(@Param("id") String processInstId);
25     
26     /**
27      * 删除更新节点
28      */
29     int deleteNode(@Param("id") String processInstId);
30
31 }