bug
luohairen
2024-12-10 062b1245a57d4e8a1e04a62efbc7d872e36eb073
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.ycl.mapper;
 
import com.ycl.domain.entity.ProjectPlanProgressReport;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.domain.query.ProjectPlanProgressReportQuery;
import com.ycl.domain.vo.ProgressReportResponseVO;
import com.ycl.domain.vo.ProjectPlanProgressReportVO;
import com.ycl.domain.form.ProjectPlanProgressReportForm;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
/**
 * 进度上报内容 Mapper 接口
 *
 * @author lhr
 * @since 2024-11-22
 */
@Mapper
public interface ProjectPlanProgressReportMapper extends BaseMapper<ProjectPlanProgressReport> {
 
    /**
     * id查找进度上报内容
     * @param id
     * @return
     */
    ProjectPlanProgressReportVO getById(Integer id);
 
    /**
    *  分页
    */
    IPage getPage(IPage page, @Param("query") ProjectPlanProgressReportQuery query);
 
    ProgressReportResponseVO getDetail(Integer id);
 
    void insertOne(ProjectPlanProgressReport projectPlanProgressReport);
 
    void updateOne(ProjectPlanProgressReport projectPlanProgressReport);
}