| 12345678910111213141516171819202122232425262728293031323334 | package org.jeecg.modules.demo.hzz.yhyc.service;import org.jeecg.modules.demo.hzz.yhyc.entity.RmMbqd;import org.jeecg.modules.demo.hzz.yhyc.entity.RmWtqd;import org.jeecg.modules.demo.hzz.yhyc.entity.RmMbfjb;import org.jeecg.modules.demo.hzz.yhyc.entity.RmRwqd;import org.jeecg.modules.demo.hzz.yhyc.entity.RmZrycsqd;import org.jeecg.modules.demo.hzz.yhyc.entity.RmJbxx;import com.baomidou.mybatisplus.extension.service.IService;import org.springframework.beans.factory.annotation.Autowired;import java.io.Serializable;import java.util.Collection;import java.util.List;/** * @Description: 基本信息表 * @Author: jeecg-boot * @Date:   2021-11-26 * @Version: V1.0 */public interface IRmJbxxService extends IService<RmJbxx> {	/**	 * 删除一对多	 */	public void delMain (String id);		/**	 * 批量删除一对多	 */	public void delBatchMain (Collection<? extends Serializable> idList);}
 |