1234567891011121314151617181920 |
- package org.jeecg.modules.demo.hzz.shjsgc.sjcjrwb.mapper;
- import java.util.List;
- import org.jeecg.modules.demo.hzz.shjsgc.sjcjrwb.entity.RmCjjl;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * @Description: 采集记录
- * @Author: jeecg-boot
- * @Date: 2021-11-29
- * @Version: V1.0
- */
- public interface RmCjjlMapper extends BaseMapper<RmCjjl> {
- public boolean deleteByMainId(@Param("mainId") String mainId);
-
- public List<RmCjjl> selectByMainId(@Param("mainId") String mainId);
- }
|