0c3d2fb74e8cb78109cf85187323a58fee1be65d.svn-base 418 B

12345678910111213141516
  1. package org.jeecg.modules.demo.hzz.shjsgc.xmxx.service;
  2. import org.jeecg.modules.demo.hzz.shjsgc.xmxx.entity.RmJgjl;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import java.util.List;
  5. /**
  6. * @Description: 监管记录
  7. * @Author: jeecg-boot
  8. * @Date: 2022-04-07
  9. * @Version: V1.0
  10. */
  11. public interface IRmJgjlService extends IService<RmJgjl> {
  12. public List<RmJgjl> selectByMainId(String mainId);
  13. }