| | |
| | | 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; |
| | | |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ProjectPlanExamineRecordVO getById(Integer id); |
| | | ProjectPlanExamineRecordVO getById(Long id); |
| | | |
| | | /** |
| | | * 分页 |
| | |
| | | |
| | | void insertOne(ProjectPlanExamineRecord item); |
| | | |
| | | List<DepartmentApprovalResponseVO> selectInfo(Integer projectPlanRecordId); |
| | | List<DepartmentApprovalResponseVO> selectInfo(Long projectPlanRecordId); |
| | | |
| | | List<DepartmentApprovalResponseVO> getPlanLog(Integer projectPlanRecordId); |
| | | List<DepartmentApprovalResponseVO> getPlanLog(Long projectPlanRecordId); |
| | | |
| | | void updateByForm(@Param("form") ProjectPlanExamineRecordForm form); |
| | | |
| | | IPage todoList(IPage page, @Param("query") ProjectPlanExamineRecordQuery query,@Param("userId") Long userId); |
| | | } |