mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 05:25:12 +08:00
Merge branch 'dev_local' into dev
# Conflicts: # jsowell-pile/src/main/java/com/jsowell/pile/mapper/PileStationInfoMapper.java # jsowell-pile/src/main/java/com/jsowell/pile/service/IPileStationInfoService.java # jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileStationInfoServiceImpl.java # jsowell-pile/src/main/resources/mapper/pile/PileStationInfoMapper.xml
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.MemberWalletInfo;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface MemberWalletInfoMapper {
|
||||
/**
|
||||
* delete by primary key
|
||||
@@ -51,5 +54,13 @@ public interface MemberWalletInfoMapper {
|
||||
*/
|
||||
int updateByPrimaryKey(MemberWalletInfo record);
|
||||
|
||||
MemberWalletInfo selectByMemberId(String memberId);
|
||||
// MemberWalletInfo selectByMemberId(String memberId);
|
||||
|
||||
/**
|
||||
* 根据会员id和目标运营商id查询用户钱包信息
|
||||
* @param memberId
|
||||
* @param merchantId
|
||||
* @return
|
||||
*/
|
||||
MemberWalletInfo selectByMemberId(@Param("memberId") String memberId, @Param("merchantId") String merchantId);
|
||||
}
|
||||
@@ -5,9 +5,11 @@ import com.jsowell.pile.dto.UniAppQueryMemberBalanceDTO;
|
||||
import com.jsowell.pile.vo.uniapp.MemberBalanceVO;
|
||||
import com.jsowell.pile.vo.uniapp.MemberWalletLogVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Repository
|
||||
public interface MemberWalletLogMapper {
|
||||
/**
|
||||
* delete by primary key
|
||||
|
||||
@@ -112,4 +112,11 @@ public interface PileMerchantInfoMapper {
|
||||
* @return
|
||||
*/
|
||||
List<MerchantSettleInfoVO> queryMerchantSettleInfoList(@Param("dto") QueryMerchantInfoDTO dto);
|
||||
|
||||
/**
|
||||
* 根据一级运营商id查询自身信息以及下属二级运营商信息
|
||||
* @param firstMerchantId 一级运营商id
|
||||
* @return
|
||||
*/
|
||||
List<PileMerchantInfo> selectListByFirstMerchant(@Param("firstMerchantId") String firstMerchantId);
|
||||
}
|
||||
|
||||
@@ -115,4 +115,6 @@ public interface PileStationInfoMapper {
|
||||
* @return
|
||||
*/
|
||||
List<NXJTStationInfoVO> NXJTQueryStationsInfo(NXJTQueryStationInfoDTO dto);
|
||||
|
||||
PileStationInfo queryInfoByDeptId(@Param("deptId") String deptId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user