| 1234567891011121314151617181920 | 
							- package org.jeecg.modules.demo.hzz.yhyc.mapper;
 
- import java.util.List;
 
- import org.jeecg.modules.demo.hzz.yhyc.entity.RmRwqd;
 
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
- import org.apache.ibatis.annotations.Param;
 
- /**
 
-  * @Description: 任务清单
 
-  * @Author: jeecg-boot
 
-  * @Date:   2021-11-26
 
-  * @Version: V1.0
 
-  */
 
- public interface RmRwqdMapper extends BaseMapper<RmRwqd> {
 
- 	public boolean deleteByMainId(@Param("mainId") String mainId);
 
-     
 
- 	public List<RmRwqd> selectByMainId(@Param("mainId") String mainId);
 
- }
 
 
  |