新增 第三方平台sn对应关系表

This commit is contained in:
Lemon
2024-03-09 14:28:38 +08:00
parent 9da10b08f6
commit 86b45362d8
5 changed files with 376 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
package com.jsowell.pile.mapper;
import java.util.List;
import com.jsowell.pile.domain.ThirdpartySnRelation;
import org.springframework.stereotype.Component;
/**
* 万车充--第三方平台桩编号对应关系Mapper接口
*
* @author jsowell
* @date 2024-03-09
*/
@Component
public interface ThirdpartySnRelationMapper {
/**
* 查询万车充--第三方平台桩编号对应关系
*
* @param id 万车充--第三方平台桩编号对应关系主键
* @return 万车充--第三方平台桩编号对应关系
*/
public ThirdpartySnRelation selectThirdpartySnRelationById(Long id);
/**
* 查询万车充--第三方平台桩编号对应关系列表
*
* @param thirdpartySnRelation 万车充--第三方平台桩编号对应关系
* @return 万车充--第三方平台桩编号对应关系集合
*/
public List<ThirdpartySnRelation> selectThirdpartySnRelationList(ThirdpartySnRelation thirdpartySnRelation);
/**
* 新增万车充--第三方平台桩编号对应关系
*
* @param thirdpartySnRelation 万车充--第三方平台桩编号对应关系
* @return 结果
*/
public int insertThirdpartySnRelation(ThirdpartySnRelation thirdpartySnRelation);
/**
* 修改万车充--第三方平台桩编号对应关系
*
* @param thirdpartySnRelation 万车充--第三方平台桩编号对应关系
* @return 结果
*/
public int updateThirdpartySnRelation(ThirdpartySnRelation thirdpartySnRelation);
/**
* 删除万车充--第三方平台桩编号对应关系
*
* @param id 万车充--第三方平台桩编号对应关系主键
* @return 结果
*/
public int deleteThirdpartySnRelationById(Long id);
/**
* 批量删除万车充--第三方平台桩编号对应关系
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteThirdpartySnRelationByIds(Long[] ids);
}