Commit 1793e098 by 李东升

更改调用计算费用实现方式

parent 5968d48e
package com.huaching.parking.local.parking_local_general.command;
import com.huaching.parking.local.parking_local_general.domain.local.bo.ThsRequestChargeAbstract;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.annotation.PostConstruct;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
/**
* @program: parking_local_general
* @description: 请求费用command
* @author: lidongsheng
* @createData: 2020-05-19 16:44
* @updateAuthor: lidongsheng
* @updateData: 2020-05-19 16:44
* @updateContent: 请求费用command
* @Version: 1.0.0
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
*/
@Service
public class RequestChargeCommand {
@Autowired
private List<ThsRequestChargeAbstract> processors;
private final ConcurrentMap<Integer, ThsRequestChargeAbstract> processMap = new ConcurrentHashMap<>();
@PostConstruct
public void start() {
if (processors == null || processors.size() == 0) {
return;
}
for (ThsRequestChargeAbstract processor : processors) {
processMap.put(processor.getType(), processor);
}
}
public ThsRequestChargeAbstract getProcessor(Integer type) {
return processMap.get(type);
}
}
......@@ -17,7 +17,6 @@ import org.springframework.web.bind.annotation.RestControllerAdvice;
* @updateContent: 全局异常处理类
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -14,7 +14,6 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2019. All rights reserved
* ************************************************
......
......@@ -14,7 +14,6 @@ import org.springframework.stereotype.Component;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -27,7 +27,6 @@ import org.springframework.web.bind.annotation.RestController;
* @updateContent: 通道相关的controller
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -26,7 +26,6 @@ import org.springframework.web.bind.annotation.RestController;
* @updateContent: 请求controller
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -28,7 +28,6 @@ import javax.validation.Valid;
* @updateContent: 费用支付相关接口(下行)
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -28,7 +28,6 @@ import javax.validation.Valid;
* @updateContent: 上报controller
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -23,7 +23,6 @@ import org.springframework.web.bind.annotation.RestController;
* @updateContent: 智慧安防小区上报controller
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......@@ -47,9 +46,4 @@ public class ReportController {
public ResponseResult barriergateReport(@RequestBody BarriergateReportDTO barriergateReportDTO){
return reportService.barriergateReport(barriergateReportDTO);
}
public static void main(String[] args) {
logger.info("ssssssssssss");
}
}
......@@ -34,7 +34,6 @@ import java.util.Date;
* @updateContent: 请求controller
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -2,9 +2,11 @@ package com.huaching.parking.local.parking_local_general.domain.local.bo;
import com.alibaba.fastjson.JSON;
import com.huaching.parking.local.parking_local_general.domain.local.po.ThsChargingRulesPO;
import com.huaching.parking.local.parking_local_general.enums.local.RequestChargeTypeEnums;
import com.huaching.parking.local.parking_local_general.util.local.DateUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import java.util.Comparator;
import java.util.Date;
......@@ -19,14 +21,12 @@ import java.util.List;
* @updateData: 2020-04-26 10:31
* @updateContent: 按照时间间隔计算费用
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
*/
public class ThsIntervalPayableMoney implements ThsRequestChargeAbstract{
@Component
public class ThsIntervalPayableMoney implements ThsRequestChargeAbstract {
private static final Logger logger = LoggerFactory.getLogger(ThsIntervalPayableMoney.class);
......@@ -37,6 +37,11 @@ public class ThsIntervalPayableMoney implements ThsRequestChargeAbstract{
, thsChargingRulesPO.getMaxOneTimeMoney());
}
@Override
public Integer getType() {
return RequestChargeTypeEnums.INTERVAL.getCode();
}
/**
* 按照间隔收费
*
......@@ -67,6 +72,7 @@ public class ThsIntervalPayableMoney implements ThsRequestChargeAbstract{
return (int) sumMoney;
}
/**
* 按照间隔收费
* "frameType": 0 按分钟收费
......
package com.huaching.parking.local.parking_local_general.domain.local.bo;
import com.alibaba.fastjson.JSON;
import com.huaching.parking.local.parking_local_general.domain.local.po.ThsChargingRulesPO;
import com.huaching.parking.local.parking_local_general.enums.local.RequestChargeTypeEnums;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import java.util.Date;
/**
* @program: parking_local_general
* @description: 按次收费
* @author: lidongsheng
* @createData: 2020-05-19 17:11
* @updateAuthor: lidongsheng
* @updateData: 2020-05-19 17:11
* @updateContent: 按次收费
* @Version: 1.0.0
* @email: lidongshenglife@163.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
*/
@Component
public class ThsOneTimePayableMoney implements ThsRequestChargeAbstract {
private static final Logger logger = LoggerFactory.getLogger(ThsOneTimePayableMoney.class);
@Override
public Integer getPayableMoney(ThsChargingRulesPO thsChargingRulesPO, Date inTime) {
String chargeDetails = thsChargingRulesPO.getChargeDetails();
return (Integer) JSON.parseObject(chargeDetails).get("oneTimeMoney");
}
@Override
public Integer getType() {
return RequestChargeTypeEnums.ONE_TIME.getCode();
}
}
......@@ -14,7 +14,6 @@ import java.util.Date;
* @updateContent: 请求费用
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......@@ -23,4 +22,6 @@ import java.util.Date;
public interface ThsRequestChargeAbstract {
Integer getPayableMoney(ThsChargingRulesPO thsChargingRulesPO, Date inTime);
Integer getType();
}
package com.huaching.parking.local.parking_local_general.domain.local.bo;
import com.alibaba.fastjson.JSON;
import com.huaching.parking.local.parking_local_general.command.RequestChargeCommand;
import com.huaching.parking.local.parking_local_general.domain.local.po.ThsChargingRulesPO;
import com.huaching.parking.local.parking_local_general.intercept.local.GeneralPrintLogAOP;
import com.huaching.parking.local.parking_local_general.service.local.MemberCarHelperService;
import com.huaching.parking.local.parking_local_general.util.local.DateUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Component;
import java.util.Comparator;
......@@ -23,8 +26,6 @@ import java.util.UUID;
* @updateData: 2020-04-22 13:41
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......@@ -37,6 +38,12 @@ public class ThsRequestChargeBO {
@Autowired
private MemberCarHelperService memberCarHelperService;
@Autowired
private ApplicationContext applicationContext;
@Autowired
private RequestChargeCommand requestChargeCommand;
/**
* 计算费用
*
......@@ -44,30 +51,13 @@ public class ThsRequestChargeBO {
* @param inTime
* @return
*/
@GeneralPrintLogAOP(value = "请求费用BO")
public Integer getPayableMoney(ThsChargingRulesPO thsChargingRulesPO, String carNo, Date inTime) {
String chargeDetails = thsChargingRulesPO.getChargeDetails();
logger.info("计算费用 parkCode -> {} , inTime -> {},chargeDetails -> {}", thsChargingRulesPO.getParkCode(), inTime, chargeDetails);
if (memberCarHelperService.vaildMember(thsChargingRulesPO.getParkCode(), carNo) != null) {
return 0;
}
ThsRequestChargeAbstract requestChargeAbstract = null;
switch (thsChargingRulesPO.getChargeType()) {
//按次收费
case 0:
logger.info("计算费用,按次收费 parkCode -> {} , inTime -> {}", thsChargingRulesPO.getParkCode(), inTime);
return (Integer) JSON.parseObject(chargeDetails).get("oneTimeMoney");
//按时段收费
case 1:
logger.info("计算费用,按时段收费 parkCode -> {} , inTime -> {}", thsChargingRulesPO.getParkCode(), inTime);
requestChargeAbstract = new ThsTimeFramePayableMoney();
break;
//按间隔收费
case 2:
logger.info("计算费用,按间隔收费 parkCode -> {} , inTime -> {}", thsChargingRulesPO.getParkCode(), inTime);
requestChargeAbstract = new ThsIntervalPayableMoney();
break;
}
return requestChargeAbstract.getPayableMoney(thsChargingRulesPO, inTime);
return requestChargeCommand.getProcessor(thsChargingRulesPO.getChargeType()).getPayableMoney(thsChargingRulesPO, inTime);
}
}
......@@ -2,9 +2,11 @@ package com.huaching.parking.local.parking_local_general.domain.local.bo;
import com.alibaba.fastjson.JSON;
import com.huaching.parking.local.parking_local_general.domain.local.po.ThsChargingRulesPO;
import com.huaching.parking.local.parking_local_general.enums.local.RequestChargeTypeEnums;
import com.huaching.parking.local.parking_local_general.util.local.DateUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import java.util.Comparator;
import java.util.Date;
......@@ -19,13 +21,11 @@ import java.util.List;
* @updateData: 2020-04-26 10:38
* @updateContent: 按照时段收费
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
*/
@Component
public class ThsTimeFramePayableMoney implements ThsRequestChargeAbstract {
private static final Logger logger = LoggerFactory.getLogger(ThsTimeFramePayableMoney.class);
......@@ -38,6 +38,11 @@ public class ThsTimeFramePayableMoney implements ThsRequestChargeAbstract {
, thsChargingRulesPO.getMaxOneTimeMoney(), thsChargingRulesPO.getMaxOneDayMoney());
}
@Override
public Integer getType() {
return RequestChargeTypeEnums.TIME_FRAME.getCode();
}
/**
* 按时段收费
*
......
......@@ -12,7 +12,6 @@ import net.bytebuddy.implementation.bind.annotation.Super;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -10,7 +10,6 @@ package com.huaching.parking.local.parking_local_general.domain.local.dto.reques
* @updateContent: 人工开闸DTO
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -16,7 +16,6 @@ import java.util.Date;
* @updateContent: 入场上报DTO
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -16,7 +16,6 @@ import java.util.Date;
* @updateContent: 入场上报DTO
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -17,7 +17,6 @@ import java.util.Date;
* @updateContent: 支付同步DTO
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import com.huaching.parking.local.parking_local_general.domain.local.po.ThsChann
* @updateContent: 通道信息DTO
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -22,7 +22,6 @@ import java.util.UUID;
* @updateContent: 请求费用信息DTO
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import java.util.List;
* @updateContent: 智慧安防设备接口调用统一返回参数
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -27,7 +27,6 @@ import java.util.Date;
* @updateContent: 道闸过车上报DTO
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -10,7 +10,6 @@ package com.huaching.parking.local.parking_local_general.domain.zhaf.dto;
* @updateContent: 设备关联新增与修改入参dto
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import java.util.List;
* @updateContent: 删除设备入参dto
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import java.util.List;
* @updateContent: 注册设备入参DTO
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import java.util.List;
* @updateContent: 订阅数据DTO
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
package com.huaching.parking.local.parking_local_general.enums.local;
import java.util.ArrayList;
import java.util.List;
/**
* @program: parking_local_general
* @description: 收费规则enum
* @author: lidongsheng
* @createData: 2020-05-19 17:16
* @updateAuthor: lidongsheng
* @updateData: 2020-05-19 17:16
* @updateContent: 收费规则类型enum
* @Version: 1.0.0
* @email: lidongshenglife@163.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
*/
public enum RequestChargeTypeEnums {
/**
* 调用接口参数错误
*/
ONE_TIME(0, "按次收费"),
/**
* 处理逻辑错误
*/
TIME_FRAME(1, "按照时段收费"),
/**
* 没有在场记录
*/
INTERVAL(2, "按照时间间隔计算费用");
/**
* 类型code
*/
private final Integer code;
/**
* 类型说明
*/
private final String message;
/**
* 构建一个 SchedulerTypeEnums
*
* @param code 类型code
* @param message 类型说明
*/
private RequestChargeTypeEnums(Integer code, String message) {
this.code = code;
this.message = message;
}
/**
* 得到类型code
*
* @return 类型code
*/
public Integer getCode() {
return code;
}
/**
* 得到类型说明。
*
* @return 类型说明。
*/
public String getMessage() {
return message;
}
/**
* 通过枚举值码查找枚举值。
*
* @param code 查找枚举值的枚举值码。
* @return 枚举值码对应的枚举值。
*/
public static RequestChargeTypeEnums findPushType(Integer code) {
for (RequestChargeTypeEnums pushType : values()) {
if (pushType.getCode().equals(code)) {
return pushType;
}
}
// 如果找不到枚举值,那就返回null
return null;
}
/**
* 获取全部枚举值。
*
* @return 全部枚举值。
*/
public static List<RequestChargeTypeEnums> getAllPushType() {
List<RequestChargeTypeEnums> list = new ArrayList<>();
for (RequestChargeTypeEnums RequestChargeType : values()) {
list.add(RequestChargeType);
}
return list;
}
/**
* 获取全部枚举值码。
*
* @return 全部枚举值码。
*/
public static List<Integer> getAllCode() {
List<Integer> list = new ArrayList<>();
for (RequestChargeTypeEnums RequestChargeType : values()) {
list.add(RequestChargeType.getCode());
}
return list;
}
}
......@@ -12,7 +12,6 @@ import java.lang.annotation.*;
* @updateContent: 使用AOP注解拦截
* @Version: 1.0
* @blog: www.b0c0.com
*/
/**
......
......@@ -27,7 +27,6 @@ import java.util.Map;
* @updateContent: AOP拦截切面类
* @Version: 1.0
* @blog: www.b0c0.com
*/
@Aspect
@Component
......
......@@ -10,7 +10,6 @@ package com.huaching.parking.local.parking_local_general.service.local;
* @updateContent: 控制道闸
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -16,7 +16,6 @@ import org.springframework.stereotype.Service;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -17,7 +17,6 @@ import com.huaching.parking.local.parking_local_general.domain.local.po.ThsParki
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -31,7 +31,6 @@ import java.util.*;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -13,7 +13,6 @@ import com.huaching.parking.local.parking_local_general.domain.local.po.ThsMembe
* @updateContent: 会员车操作帮助类
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -23,7 +23,6 @@ import java.util.Date;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -16,7 +16,6 @@ import java.util.Date;
* @updateContent: 支付费用相关Service
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -30,7 +30,6 @@ import java.util.*;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import com.huaching.parking.local.parking_local_general.domain.local.po.ThsCarAd
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -14,7 +14,6 @@ import java.util.List;
* @updateContent: 通道信息查询
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import com.huaching.parking.local.parking_local_general.domain.local.po.ThsCharg
* @updateContent: 收费规则相关Service
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import com.huaching.parking.local.parking_local_general.domain.local.po.ThsMembe
* @updateContent: 会员车辆
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import com.huaching.parking.local.parking_local_general.domain.local.po.ThsParkM
* @updateContent: 车场信息Service
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import com.huaching.parking.local.parking_local_general.domain.local.po.ThsParki
* @updateContent: 停车记录相关service
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -12,7 +12,6 @@ import com.huaching.parking.local.parking_local_general.domain.local.po.ThsPayOr
* @updateContent: 支付订单记录
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -19,7 +19,6 @@ import org.springframework.stereotype.Service;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -21,7 +21,6 @@ import java.util.List;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -22,7 +22,6 @@ import java.util.List;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -19,7 +19,6 @@ import org.springframework.stereotype.Service;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -20,7 +20,6 @@ import java.util.List;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -29,7 +29,6 @@ import org.springframework.stereotype.Service;
* @updateContent: 停车记录
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -19,7 +19,6 @@ import org.springframework.stereotype.Service;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -17,7 +17,6 @@ import com.huaching.parking.local.parking_local_general.domain.zhaf.dto.Subscrip
* @updateContent: 下行接口请求
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -13,7 +13,6 @@ import com.huaching.parking.local.parking_local_general.domain.zhaf.dto.Barrierg
* @updateContent: 上报处理service
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -41,7 +41,6 @@ import java.util.Map;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -26,7 +26,6 @@ import org.springframework.stereotype.Service;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
......@@ -18,7 +18,6 @@ import java.util.Date;
* @updateContent:
* @Version: 1.0.0
* @blog: www.b0c0.com
* ************************************************
* Copyright @ 李东升 2020. All rights reserved
* ************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment