管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-12-25 1def68140023fe6edb8ce47df21fe1ed0ae871e0
src/main/java/com/lf/server/service/show/ApplyService.java
@@ -10,6 +10,7 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
@@ -26,13 +27,13 @@
    FlowService flowService;
    @Override
    public Integer selectCount(Integer userid) {
        return applyMapper.selectCount(userid);
    public Integer selectCount(String uname, Integer status, Timestamp start, Timestamp end) {
        return null;
    }
    @Override
    public List<ApplyEntity> selectByPage(Integer userid, Integer limit, Integer offset) {
        return applyMapper.selectByPage(userid, limit, offset);
    public List<ApplyEntity> selectByPage(Integer userid, String uname, Integer status, Timestamp start, Timestamp end, Integer limit, Integer offset) {
        return null;
    }
    @Override