123456789101112131415161718 |
- package com.jiayue.biz.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.jiayue.biz.domain.ProjectProgressInfo;
- import org.apache.ibatis.annotations.Param;
- import org.apache.ibatis.annotations.Select;
- public interface ProjectProgressInfoMapper extends BaseMapper<ProjectProgressInfo> {
- /**
- * 删除数据
- */
- @Select({"delete from project_progress_info where project_no= #{projectNo}"})
- void deleteByProjectNo(@Param("projectNo") String projectNo);
- @Select({"select * from project_progress_info where project_no = #{projectNo} and task_title = #{taskTitle}"})
- ProjectProgressInfo seleteByProjectNo(@Param("projectNo") String projectN, @Param("taskTitle") String taskTitle);
- }
|