77b3fcfd5402a50f4d6552c97bd9e54f56a026c6.svn-base 555 B

1234567891011121314151617181920
  1. package org.jeecg.modules.demo.hzz.xxgl.hdmx.mapper;
  2. import java.util.List;
  3. import org.jeecg.modules.demo.hzz.xxgl.hdmx.entity.RmZdmxxgl;
  4. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  5. import org.apache.ibatis.annotations.Param;
  6. /**
  7. * @Description: 纵断面信息
  8. * @Author: jeecg-boot
  9. * @Date: 2022-04-06
  10. * @Version: V1.0
  11. */
  12. public interface RmZdmxxglMapper extends BaseMapper<RmZdmxxgl> {
  13. public boolean deleteByMainId(@Param("mainId") String mainId);
  14. public List<RmZdmxxgl> selectByMainId(@Param("mainId") String mainId);
  15. }