c23c15b1d8792b372629d46e77c4d44903685f23.svn-base 547 B

1234567891011121314151617181920
  1. package org.jeecg.modules.demo.hzz.xxcj.mapper;
  2. import java.util.List;
  3. import org.jeecg.modules.demo.hzz.xxcj.entity.RmCjxxmx;
  4. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  5. import org.apache.ibatis.annotations.Param;
  6. /**
  7. * @Description: 信息采集明细表
  8. * @Author: jeecg-boot
  9. * @Date: 2021-11-23
  10. * @Version: V1.0
  11. */
  12. public interface RmCjxxmxMapper extends BaseMapper<RmCjxxmx> {
  13. public boolean deleteByMainId(@Param("mainId") String mainId);
  14. public List<RmCjxxmx> selectByMainId(@Param("mainId") String mainId);
  15. }