| | |
| | | import com.ycl.domain.entity.ProjectPlanExamineRecord; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.domain.form.ProjectPlanExamineRecordForm; |
| | | import com.ycl.domain.vo.DepartmentApprovalResponseVO; |
| | | import com.ycl.domain.vo.ProjectPlanExamineRecordVO; |
| | | import com.ycl.domain.query.ProjectPlanExamineRecordQuery; |
| | | import com.ycl.domain.vo.ProjectProcessToDoVo; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 项目审核记录表 Mapper 接口 |
| | |
| | | IPage getPage(IPage page, @Param("query") ProjectPlanExamineRecordQuery query); |
| | | |
| | | void insertOne(ProjectPlanExamineRecord item); |
| | | |
| | | List<DepartmentApprovalResponseVO> selectInfo(Long projectPlanRecordId); |
| | | |
| | | List<DepartmentApprovalResponseVO> getPlanLog(Long projectPlanRecordId); |
| | | |
| | | void updateByForm(@Param("form") ProjectPlanExamineRecordForm form); |
| | | |
| | | IPage todoList(IPage page, @Param("query") ProjectPlanExamineRecordQuery query,@Param("userId") Long userId); |
| | | } |