- package org.jeecg.modules.demo.hzz.shjsgc.sjcjrwb.service;
- import org.jeecg.modules.demo.hzz.shjsgc.sjcjrwb.entity.RmCjjl;
- import com.baomidou.mybatisplus.extension.service.IService;
- import java.util.List;
- /**
- * @Description: 采集记录
- * @Author: jeecg-boot
- * @Date: 2021-11-29
- * @Version: V1.0
- */
- public interface IRmCjjlService extends IService<RmCjjl> {
- public List<RmCjjl> selectByMainId(String mainId);
- }
|