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.service;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
|
import com.ruoyi.docking.entity.ProjectProgress;
|
|
|
|
|
import com.ruoyi.docking.entity.request.YdxxtjRequest;
|
|
|
|
|
import com.ruoyi.gysl.entity.request.ZwIdPageReq;
|
|
|
|
|
import com.ruoyi.gysl.entity.response.YdxxtjResponse;
|
|
|
|
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 项目月度进度(对接数据)(ProjectProgress)表服务接口
|
|
|
|
|
*
|
|
|
|
|
* @author makejava
|
|
|
|
|
* @since 2025-03-25 14:49:04
|
|
|
|
|
*/
|
|
|
|
|
public interface ProjectProgressService extends IService<ProjectProgress> {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询所有数据
|
|
|
|
|
*
|
|
|
|
|
* @param zwIdPageReq 查询实体
|
|
|
|
|
* @return 所有数据
|
|
|
|
|
*/
|
|
|
|
|
List<ProjectProgress> page( ZwIdPageReq zwIdPageReq);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 项目月度信息投资统计
|
|
|
|
|
*/
|
|
|
|
|
List<YdxxtjResponse> ydxxtj(YdxxtjRequest projectLegend);
|
|
|
|
|
}
|
|
|
|
|
|