- package org.jeecg.modules.demo.hzz.shjsgc.xmxx.service;
- import org.jeecg.modules.demo.hzz.shjsgc.xmxx.entity.RmJgjl;
- import com.baomidou.mybatisplus.extension.service.IService;
- import java.util.List;
- /**
- * @Description: 监管记录
- * @Author: jeecg-boot
- * @Date: 2022-04-07
- * @Version: V1.0
- */
- public interface IRmJgjlService extends IService<RmJgjl> {
- public List<RmJgjl> selectByMainId(String mainId);
- }
|