package org.jeecg.modules.demo.hzz.xxcj.mapper; import java.util.List; import org.jeecg.modules.demo.hzz.xxcj.entity.RmCjxxmx; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; /** * @Description: 信息采集明细表 * @Author: jeecg-boot * @Date: 2021-11-23 * @Version: V1.0 */ public interface RmCjxxmxMapper extends BaseMapper { public boolean deleteByMainId(@Param("mainId") String mainId); public List selectByMainId(@Param("mainId") String mainId); }