| | |
| | | |
| | | @Override |
| | | public Integer selectCount(String uname, Integer status, Timestamp start, Timestamp end) { |
| | | return null; |
| | | uname = StringHelper.getLikeStr(uname); |
| | | |
| | | return applyMapper.selectCount(uname, status, start, end); |
| | | } |
| | | |
| | | @Override |
| | | public List<ApplyEntity> selectByPage(Integer userid, String uname, Integer status, Timestamp start, Timestamp end, Integer limit, Integer offset) { |
| | | return null; |
| | | uname = StringHelper.getLikeStr(uname); |
| | | |
| | | return applyMapper.selectByPage(userid, uname, status, start, end, limit, offset); |
| | | } |
| | | |
| | | @Override |
| | |
| | | } |
| | | |
| | | @Override |
| | | public Integer selectSubmits(Integer userid) { |
| | | return applyMapper.selectSubmits(userid); |
| | | } |
| | | |
| | | @Override |
| | | public List<FlowEntity> selectFlows(Integer applyid) { |
| | | return applyMapper.selectFlows(applyid); |
| | | } |
| | | |
| | | @Override |
| | | public Integer insert(ApplyEntity entity) { |
| | | return applyMapper.insert(entity); |
| | | } |