update 订单列表添加车牌号字段

This commit is contained in:
Lemon
2023-08-24 16:06:10 +08:00
parent 593810b625
commit 3ced5a36b8
6 changed files with 40 additions and 33 deletions

View File

@@ -132,6 +132,11 @@ public class OrderBasicInfo extends BaseEntity {
@Excel(name = "支付时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTime;
/**
* 车牌号码
*/
private String plateNumber;
/**
* 订单总金额 = 电费总金额 + 服务费总金额
*/

View File

@@ -73,4 +73,9 @@ public class GenerateOrderDTO extends BasicPileDTO{
* vin启动有值
*/
private MemberPlateNumberRelation MemberPlateNumberRelation;
/**
* 车牌号码
*/
private String plateNumber;
}

View File

@@ -22,18 +22,4 @@ public class GetTokenDTO {
*/
private String secretKey;
/**
* 请求时间格式YYYYMMDDHHMMSS
*/
private String accTime;
/**
* 1.0
*/
private String version;
/**
* 使用签名公式获得
*/
private String sign;
}