30a578b93cf6eb359c8bd823c31a6b04417d0e07.svn-base 442 B

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