package org.jeecg.modules.demo.hzz.shjsgc.shxmxx.mapper; import java.util.List; import org.jeecg.modules.demo.hzz.shjsgc.shxmxx.entity.RmJgjlb; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; /** * @Description: 监管记录 * @Author: jeecg-boot * @Date: 2022-02-19 * @Version: V1.0 */ public interface RmJgjlbMapper extends BaseMapper { public boolean deleteByMainId(@Param("mainId") String mainId); public List selectByMainId(@Param("mainId") String mainId); }