1234567891011121314151617181920 |
- package org.jeecg.modules.demo.hzz.xxgl.hdmx.mapper;
- import java.util.List;
- import org.jeecg.modules.demo.hzz.xxgl.hdmx.entity.RmZdmxxgl;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * @Description: 纵断面信息
- * @Author: jeecg-boot
- * @Date: 2022-04-06
- * @Version: V1.0
- */
- public interface RmZdmxxglMapper extends BaseMapper<RmZdmxxgl> {
- public boolean deleteByMainId(@Param("mainId") String mainId);
-
- public List<RmZdmxxgl> selectByMainId(@Param("mainId") String mainId);
- }
|