mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-03 21:48:13 +08:00
update 打印日志
This commit is contained in:
@@ -44,8 +44,10 @@ public class CacheConstants {
|
|||||||
// 会员余额退款正在进行中
|
// 会员余额退款正在进行中
|
||||||
public static final String MEMBER_BALANCE_REFUNDS_ARE_IN_PROGRESS = "member_balance_refunds_are_in_progress:";
|
public static final String MEMBER_BALANCE_REFUNDS_ARE_IN_PROGRESS = "member_balance_refunds_are_in_progress:";
|
||||||
|
|
||||||
|
// 平台测试员
|
||||||
public static final String PLATFORM_TESTER = "platform_tester:";
|
public static final String PLATFORM_TESTER = "platform_tester:";
|
||||||
|
|
||||||
|
// 查询桩型号信息
|
||||||
public static final String GET_PILE_MODEL_INFO_BY_MODEL_ID = "get_pile_model_info_by_model_id:";
|
public static final String GET_PILE_MODEL_INFO_BY_MODEL_ID = "get_pile_model_info_by_model_id:";
|
||||||
|
|
||||||
// 地锁数据
|
// 地锁数据
|
||||||
@@ -57,6 +59,7 @@ public class CacheConstants {
|
|||||||
// 根据站点id查询充电桩列表
|
// 根据站点id查询充电桩列表
|
||||||
public static final String GET_PILE_LIST_BY_STATION_ID = "get_pile_list_by_station_id:";
|
public static final String GET_PILE_LIST_BY_STATION_ID = "get_pile_list_by_station_id:";
|
||||||
|
|
||||||
|
// 查询计费模板详情
|
||||||
public static final String QUERY_BILLING_DETAIL_BY_ID = "query_billing_detail_by_id:";
|
public static final String QUERY_BILLING_DETAIL_BY_ID = "query_billing_detail_by_id:";
|
||||||
|
|
||||||
// 计费模板
|
// 计费模板
|
||||||
|
|||||||
@@ -472,6 +472,10 @@ public class MemberBasicInfoServiceImpl implements IMemberBasicInfoService {
|
|||||||
return pileBasicInfoService.getPileInfoByMemberId(memberId);
|
return pileBasicInfoService.getPileInfoByMemberId(memberId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改平台测试员状态
|
||||||
|
* @param dto
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void updatePlatformTester(PlatformTesterDTO dto) {
|
public void updatePlatformTester(PlatformTesterDTO dto) {
|
||||||
if (StringUtils.isBlank(dto.getMemberId()) || StringUtils.isBlank(dto.getStatus())) {
|
if (StringUtils.isBlank(dto.getMemberId()) || StringUtils.isBlank(dto.getStatus())) {
|
||||||
|
|||||||
Reference in New Issue
Block a user