53bffc1b2568ee4083cc8bcf6767f77d0c7d6e8e.svn-base 543 B

12345678910111213141516171819
  1. package org.jeecg.modules.demo.hzz.shjsgc.xmxx.mapper;
  2. import java.util.List;
  3. import org.jeecg.modules.demo.hzz.shjsgc.xmxx.entity.RmJgjl;
  4. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  5. import org.apache.ibatis.annotations.Param;
  6. /**
  7. * @Description: 监管记录
  8. * @Author: jeecg-boot
  9. * @Date: 2022-04-07
  10. * @Version: V1.0
  11. */
  12. public interface RmJgjlMapper extends BaseMapper<RmJgjl> {
  13. public boolean deleteByMainId(@Param("mainId") String mainId);
  14. public List<RmJgjl> selectByMainId(@Param("mainId") String mainId);
  15. }