| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.pojo.DocUser; |
| | | import com.whyc.pojo.WorksheetLink; |
| | | import com.whyc.pojo.WorksheetMain; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface WorksheetLinkMapper extends CustomMapper<WorksheetLink> { |
| | | List<WorksheetLink> getInfoList(Long id); |
| | | |
| | | List<WorksheetMain> getInfoList2(Long userId, int statusExp); |
| | | |
| | | List<WorksheetMain> getInfoList3(Long userId, int statusExp); |
| | | |
| | | DocUser getApprovingUser(Integer mainId); |
| | | |
| | | List<WorksheetLink> getProcedureDocApprovingByUserId(Long id); |
| | | |
| | | List<WorksheetLink> getList(int mainId); |
| | | |
| | | } |