新增 后管设置桩对应第三方平台编号页面

This commit is contained in:
Lemon
2024-03-11 16:07:20 +08:00
parent c73bc074cd
commit 0cec8f18ce
9 changed files with 244 additions and 4 deletions

View File

@@ -3,6 +3,10 @@ package com.jsowell.pile.mapper;
import java.util.List;
import com.jsowell.pile.domain.ThirdpartySnRelation;
import com.jsowell.pile.dto.QueryPileDTO;
import com.jsowell.pile.dto.ThirdPartySnRelationDTO;
import com.jsowell.pile.vo.web.ThirdPartySnRelationVO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
/**
@@ -60,4 +64,18 @@ public interface ThirdpartySnRelationMapper {
* @return 结果
*/
public int deleteThirdpartySnRelationByIds(Long[] ids);
/**
* 查询第三方平台桩编号对应的列表
* @param queryPileDTO
* @return
*/
List<ThirdPartySnRelationVO> getRelationVOList(@Param("dto") QueryPileDTO queryPileDTO);
/**
* 修改第三方平台对应编号
* @param dto
* @return
*/
int updateThirdPartySnRelation(@Param("dto") ThirdPartySnRelationDTO dto);
}