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

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,9 @@ package com.jsowell.pile.service;
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;
/**
* 万车充--第三方平台桩编号对应关系Service接口
@@ -58,4 +61,18 @@ public interface IThirdpartySnRelationService {
* @return 结果
*/
public int deleteThirdpartySnRelationById(Long id);
/**
* 查询第三方平台桩编号对应的列表
* @param queryPileDTO
* @return
*/
List<ThirdPartySnRelationVO> getRelationVOList(QueryPileDTO queryPileDTO);
/**
* 修改第三方平台对应编号
* @param dto
* @return
*/
int updateThirdPartySnRelation(ThirdPartySnRelationDTO dto);
}