1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.whyc.mapper;
|
| import com.whyc.pojo.db_user.User;
| import com.whyc.pojo.web_site.WorkflowMain;
|
| import java.util.List;
|
| public interface WorkflowMainMapper extends CustomMapper<WorkflowMain> {
|
| List<WorkflowMain> getReceivedListByUserAndType(User user, int type, int status);
|
| //查询表单编号
| Integer getMaxId();
|
| }
|
|