| New file |
| | |
| | | package com.ycl.mapper; |
| | | |
| | | import com.ycl.domain.entity.ProjectEngineering; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.domain.vo.ProjectEngineeringVO; |
| | | import com.ycl.domain.form.ProjectEngineeringForm; |
| | | import com.ycl.domain.query.ProjectEngineeringQuery; |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * 项目工程 Mapper 接口 |
| | | * |
| | | * @author xp |
| | | * @since 2025-02-26 |
| | | */ |
| | | @Mapper |
| | | public interface ProjectEngineeringMapper extends BaseMapper<ProjectEngineering> { |
| | | |
| | | /** |
| | | * id查找项目工程 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ProjectEngineeringVO getById(String id); |
| | | |
| | | /** |
| | | * 分页 |
| | | */ |
| | | IPage getPage(IPage page, @Param("query") ProjectEngineeringQuery query); |
| | | |
| | | } |