mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
Merge branch 'dev' into feature-integrated_with_JCPP
This commit is contained in:
@@ -80,7 +80,7 @@ public interface MemberGroupMapper {
|
||||
|
||||
MemberGroupVO queryByGroupCodeAndMemberId(@Param("groupCode") String groupCode, @Param("memberId") String memberId);
|
||||
|
||||
List<MemberVO> queryMemberList(@Param("groupCode") String groupCode);
|
||||
List<MemberVO> queryMemberList(MemberGroupDTO dto);
|
||||
|
||||
MemberGroup selectByGroupCode(String groupCode);
|
||||
|
||||
|
||||
@@ -215,4 +215,6 @@ public interface PileStationInfoService {
|
||||
* @return
|
||||
*/
|
||||
PageResponse queryUserFrequentedStation(QueryStationDTO dto);
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -386,7 +386,10 @@ public class MemberGroupServiceImpl implements MemberGroupService {
|
||||
|
||||
@Override
|
||||
public List<MemberVO> queryMemberList(MemberGroupDTO dto) {
|
||||
List<MemberVO> list = memberGroupMapper.queryMemberList(dto.getGroupCode());
|
||||
if (dto.getGroupCode().isEmpty()){
|
||||
return null;
|
||||
}
|
||||
List<MemberVO> list = memberGroupMapper.queryMemberList(dto);
|
||||
return list;
|
||||
}
|
||||
|
||||
|
||||
@@ -773,6 +773,7 @@ public class PileConnectorInfoServiceImpl implements PileConnectorInfoService {
|
||||
deleteRedisByPileSnOrPileConnectorCode(pileSn, pileConnectorCode);
|
||||
redisCache.setCacheObject(redisKey, status, CacheConstants.cache_expire_time_6m);
|
||||
|
||||
|
||||
// 异步放缓存
|
||||
CompletableFuture.runAsync(() -> statusChange(pileConnectorCode), executor);
|
||||
}
|
||||
|
||||
@@ -36,7 +36,6 @@ import com.jsowell.pile.vo.uniapp.business.StationBusinessAnalyzeInfoVO;
|
||||
import com.jsowell.pile.vo.uniapp.business.StationOrderQuantityInfoVO;
|
||||
import com.jsowell.pile.vo.uniapp.business.StationStatisticsInfosVO;
|
||||
import com.jsowell.pile.vo.uniapp.customer.CurrentTimePriceDetails;
|
||||
import com.jsowell.pile.vo.web.BillingTemplateVO;
|
||||
import com.jsowell.pile.vo.web.PileStationVO;
|
||||
import com.jsowell.pile.vo.web.StationSelectVO;
|
||||
import com.jsowell.system.service.SysDeptService;
|
||||
@@ -1623,4 +1622,5 @@ public class PileStationInfoServiceImpl implements PileStationInfoService {
|
||||
}
|
||||
return uniAppQueryStationInfoListV2(dto);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user