| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.pojo.UserInf; |
| | | import com.whyc.pojo.WorkflowMain; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface WorkflowMainMapper extends CustomMapper<WorkflowMain>{ |
| | | List<WorkflowMain> getWorkflowAlarmList(Long userId); |
| | | public interface WorkflowMainMapper extends CustomMapper<WorkflowMain> { |
| | | |
| | | List<WorkflowMain> getPendingWorkflowList(Long userId,Integer type,WorkflowMain main); |
| | | List<WorkflowMain> getReceivedListByUserAndType(UserInf user, int type, int status); |
| | | |
| | | //查询表单编号 |
| | | Integer getMaxId(); |
| | | |
| | | void addWorkMain(WorkflowMain main); |
| | | } |