1234567891011121314151617181920 |
- 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<RmCjxxmx> {
- public boolean deleteByMainId(@Param("mainId") String mainId);
-
- public List<RmCjxxmx> selectByMainId(@Param("mainId") String mainId);
- }
|