kongdeqiang
2022-09-19 a9862e81851bbe037edc6bb1c7f562c1e55c0d7f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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;
    }
}