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.ProcessTask; | |
7 | @Mapper | |
8 | public interface ProcessTaskMapper { | |
9 | ||
10 | ||
11 | int insertList(@Param("pro") ProcessTask list); | |
12 | ||
13 | int deleteTask(); | |
14 | ||
15 | ||
16 | } |