6be2a36f3905b7ab73a84c75e795504b3c8db8bd.svn-base 551 B

1234567891011121314151617181920
  1. package org.jeecg.modules.demo.hzz.yhyc.mapper;
  2. import java.util.List;
  3. import org.jeecg.modules.demo.hzz.yhyc.entity.RmZrycsqd;
  4. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  5. import org.apache.ibatis.annotations.Param;
  6. /**
  7. * @Description: 责任与措施清单
  8. * @Author: jeecg-boot
  9. * @Date: 2021-11-26
  10. * @Version: V1.0
  11. */
  12. public interface RmZrycsqdMapper extends BaseMapper<RmZrycsqd> {
  13. public boolean deleteByMainId(@Param("mainId") String mainId);
  14. public List<RmZrycsqd> selectByMainId(@Param("mainId") String mainId);
  15. }