yanghb
2023-04-06 e4874ff3af0c59b6b9a1ee1ae39a332829253cd7
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.enums.IdType;
import java.math.BigDecimal;
import java.util.Date;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
/**
 * <p>
 * 投诉扣款明细
 * </p>
 *
 * @author stylefeng
 * @since 2022-03-23
 */
@TableName("t_complaint_deductmoney")
public class TComplaintDeductmoney extends Model<TComplaintDeductmoney> {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 扣款时间
     */
    private Date createTime;
    /**
     * 司机id
     */
    private Integer driverId;
    /**
     * 扣款金额
     */
    private Double money;
    /**
     * 投诉原因
     */
    private String reason;
    /**
     * 投诉id集(用;隔开)
     */
    private String complaintIds;
 
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Integer getDriverId() {
        return driverId;
    }
 
    public void setDriverId(Integer driverId) {
        this.driverId = driverId;
    }
 
    public Double getMoney() {
        return money;
    }
 
    public void setMoney(Double money) {
        this.money = money;
    }
 
    public String getReason() {
        return reason;
    }
 
    public void setReason(String reason) {
        this.reason = reason;
    }
 
    public String getComplaintIds() {
        return complaintIds;
    }
 
    public void setComplaintIds(String complaintIds) {
        this.complaintIds = complaintIds;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "TComplaintDeductmoney{" +
        "id=" + id +
        ", createTime=" + createTime +
        ", driverId=" + driverId +
        ", money=" + money +
        ", reason=" + reason +
        ", complaintIds=" + complaintIds +
        "}";
    }
}