历史订单表增加订单号字段

This commit is contained in:
ZZ 2021-09-29 11:26:50 +08:00
parent f9e9c30ad9
commit 0c89d609d2

View File

@ -231,6 +231,11 @@ public class XhpcHistoryOrder extends BaseEntity {
*/
private String phone;
/**
* 订单号
*/
private String orderNo;
public Double getMeterValueEndEvcs() {
return meterValueEndEvcs;
@ -644,4 +649,14 @@ public class XhpcHistoryOrder extends BaseEntity {
this.phone = phone;
}
public String getOrderNo() {
return orderNo;
}
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
}