1234567891011121314151617 |
- package org.jeecg.modules.demo.hzz.yhyc.service;
- import org.jeecg.modules.demo.hzz.yhyc.entity.RmWtqd;
- import com.baomidou.mybatisplus.extension.service.IService;
- import java.util.List;
- /**
- * @Description: 问题清单
- * @Author: jeecg-boot
- * @Date: 2021-11-26
- * @Version: V1.0
- */
- public interface IRmWtqdService extends IService<RmWtqd> {
- public List<RmWtqd> selectByMainId(String mainId);
- public void deleteRmWtqd(String id);
- }
|