8a7a20f8df6ac289da9380edeb361999738e44ae.svn-base 551 B

12345678910111213141516171819
  1. package org.jeecg.modules.demo.hzz.shjsgc.shxmxx.mapper;
  2. import java.util.List;
  3. import org.jeecg.modules.demo.hzz.shjsgc.shxmxx.entity.RmJgjlb;
  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-02-19
  10. * @Version: V1.0
  11. */
  12. public interface RmJgjlbMapper extends BaseMapper<RmJgjlb> {
  13. public boolean deleteByMainId(@Param("mainId") String mainId);
  14. public List<RmJgjlb> selectByMainId(@Param("mainId") String mainId);
  15. }