package com.boying.entity;
|
|
import com.boying.common.BaseEntity;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Table(name = "orderRecord")
|
@Entity
|
public class OrderRecord extends BaseEntity {
|
private double money;//金额
|
private int type;//0:执法 1:停车 2:黑名单
|
private Long queryId;//出停车场id或罚单id
|
private int status;//支付状态 0:未支付 1:已支付
|
private String address;//位置
|
private String carNo;//车牌号
|
private String code;//订单号
|
private String payCode;//电子缴款码
|
|
public double getMoney() {
|
return money;
|
}
|
|
public void setMoney(double money) {
|
this.money = money;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public Long getQueryId() {
|
return queryId;
|
}
|
|
public void setQueryId(Long queryId) {
|
this.queryId = queryId;
|
}
|
|
public int getStatus() {
|
return status;
|
}
|
|
public void setStatus(int status) {
|
this.status = status;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public String getCarNo() {
|
return carNo;
|
}
|
|
public void setCarNo(String carNo) {
|
this.carNo = carNo;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getPayCode() {
|
return payCode;
|
}
|
|
public void setPayCode(String payCode) {
|
this.payCode = payCode;
|
}
|
}
|