You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
package com.ruoyi.docking.mapper;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
import com.ruoyi.docking.entity.ProjectProgress;
|
|
|
|
|
import com.ruoyi.gysl.entity.request.ZwIdPageReq;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 项目月度进度(对接数据)(ProjectProgress)表数据库访问层
|
|
|
|
|
*
|
|
|
|
|
* @author makejava
|
|
|
|
|
* @since 2025-03-25 14:49:04
|
|
|
|
|
*/
|
|
|
|
|
public interface ProjectProgressMapper extends BaseMapper<ProjectProgress> {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分页查询所有数据
|
|
|
|
|
*
|
|
|
|
|
* @param page 分页对象
|
|
|
|
|
* @param zwIdPageReq 查询实体
|
|
|
|
|
* @return 所有数据
|
|
|
|
|
*/
|
|
|
|
|
Page<ProjectProgress> page(Page<ProjectProgress> page,@Param("req") ZwIdPageReq zwIdPageReq);
|
|
|
|
|
List<ProjectProgress> page( @Param("req") ZwIdPageReq zwIdPageReq);
|
|
|
|
|
}
|
|
|
|
|
|