1234567891011121314151617181920 |
- package org.jeecg.modules.demo.hzz.yhyc.mapper;
- import java.util.List;
- import org.jeecg.modules.demo.hzz.yhyc.entity.RmWtqd;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * @Description: 问题清单
- * @Author: jeecg-boot
- * @Date: 2021-11-26
- * @Version: V1.0
- */
- public interface RmWtqdMapper extends BaseMapper<RmWtqd> {
- public boolean deleteByMainId(@Param("mainId") String mainId);
-
- public List<RmWtqd> selectByMainId(@Param("mainId") String mainId);
- }
|