1234567891011121314151617181920 |
- package org.jeecg.modules.demo.hzz.shjsgc.xmrk.mapper;
- import java.util.List;
- import org.jeecg.modules.demo.hzz.shjsgc.xmrk.entity.RmAxshgczyzbb;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * @Description: 涉河工程主要指标表
- * @Author: jeecg-boot
- * @Date: 2022-03-31
- * @Version: V1.0
- */
- public interface RmAxshgczyzbbMapper extends BaseMapper<RmAxshgczyzbb> {
- public boolean deleteByMainId(@Param("mainId") String mainId);
-
- public List<RmAxshgczyzbb> selectByMainId(@Param("mainId") String mainId);
- }
|