修改表名、实体类

This commit is contained in:
Lemon
2023-07-07 14:26:31 +08:00
parent 7a7117f089
commit 19704bcf9e
10 changed files with 178 additions and 174 deletions

View File

@@ -1,6 +1,6 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.DockingPlatformConfig;
import com.jsowell.pile.domain.ThirdPartyPlatformConfig;
import org.springframework.stereotype.Repository;
import java.util.List;
@@ -12,38 +12,38 @@ import java.util.List;
* @date 2023-05-27
*/
@Repository
public interface DockingPlatformConfigMapper {
public interface ThirdPartyPlatformConfigMapper {
/**
* 查询对接平台配置信息
*
* @param id 对接平台配置信息主键
* @return 对接平台配置信息
*/
public DockingPlatformConfig selectDockingPlatformConfigById(Integer id);
public ThirdPartyPlatformConfig selectThirdPartyPlatformConfigById(Integer id);
/**
* 查询对接平台配置信息列表
*
* @param dockingPlatformConfig 对接平台配置信息
* @param thirdPartyPlatformConfig 对接平台配置信息
* @return 对接平台配置信息集合
*/
public List<DockingPlatformConfig> selectDockingPlatformConfigList(DockingPlatformConfig dockingPlatformConfig);
public List<ThirdPartyPlatformConfig> selectThirdPartyPlatformConfigList(ThirdPartyPlatformConfig thirdPartyPlatformConfig);
/**
* 新增对接平台配置信息
*
* @param dockingPlatformConfig 对接平台配置信息
* @param thirdPartyPlatformConfig 对接平台配置信息
* @return 结果
*/
public int insertDockingPlatformConfig(DockingPlatformConfig dockingPlatformConfig);
public int insertThirdPartyPlatformConfig(ThirdPartyPlatformConfig thirdPartyPlatformConfig);
/**
* 修改对接平台配置信息
*
* @param dockingPlatformConfig 对接平台配置信息
* @param thirdPartyPlatformConfig 对接平台配置信息
* @return 结果
*/
public int updateDockingPlatformConfig(DockingPlatformConfig dockingPlatformConfig);
public int updateThirdPartyPlatformConfig(ThirdPartyPlatformConfig thirdPartyPlatformConfig);
/**
* 删除对接平台配置信息
@@ -51,7 +51,7 @@ public interface DockingPlatformConfigMapper {
* @param id 对接平台配置信息主键
* @return 结果
*/
public int deleteDockingPlatformConfigById(Integer id);
public int deleteThirdPartyPlatformConfigById(Integer id);
/**
* 批量删除对接平台配置信息
@@ -59,7 +59,7 @@ public interface DockingPlatformConfigMapper {
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteDockingPlatformConfigByIds(Integer[] ids);
public int deleteThirdPartyPlatformConfigByIds(Integer[] ids);
/**
* 通过operatorId查询配置信息
@@ -67,5 +67,5 @@ public interface DockingPlatformConfigMapper {
* @param operatorId
* @return
*/
DockingPlatformConfig getInfoByOperatorId(String operatorId);
ThirdPartyPlatformConfig getInfoByOperatorId(String operatorId);
}