a5866ca1d9bb4ebe236d98511c7bad5b74ab823f.svn-base 925 B

12345678910111213141516171819202122232425262728293031323334
  1. package org.jeecg.modules.demo.hzz.yhyc.service;
  2. import org.jeecg.modules.demo.hzz.yhyc.entity.RmMbqd;
  3. import org.jeecg.modules.demo.hzz.yhyc.entity.RmWtqd;
  4. import org.jeecg.modules.demo.hzz.yhyc.entity.RmMbfjb;
  5. import org.jeecg.modules.demo.hzz.yhyc.entity.RmRwqd;
  6. import org.jeecg.modules.demo.hzz.yhyc.entity.RmZrycsqd;
  7. import org.jeecg.modules.demo.hzz.yhyc.entity.RmJbxx;
  8. import com.baomidou.mybatisplus.extension.service.IService;
  9. import org.springframework.beans.factory.annotation.Autowired;
  10. import java.io.Serializable;
  11. import java.util.Collection;
  12. import java.util.List;
  13. /**
  14. * @Description: 基本信息表
  15. * @Author: jeecg-boot
  16. * @Date: 2021-11-26
  17. * @Version: V1.0
  18. */
  19. public interface IRmJbxxService extends IService<RmJbxx> {
  20. /**
  21. * 删除一对多
  22. */
  23. public void delMain (String id);
  24. /**
  25. * 批量删除一对多
  26. */
  27. public void delBatchMain (Collection<? extends Serializable> idList);
  28. }