wlzboy
2025-12-06 5d75fcaea0a3774052b7484a4ffe755258502363
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
package com.ruoyi.system.domain;
 
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 任务附加费用对象 sys_task_additional_fee
 * 
 * @author ruoyi
 * @date 2025-01-15
 */
public class SysTaskAdditionalFee extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** 主键ID */
    private Long id;
 
    /** 任务ID */
    private Long taskId;
 
    /** 费用类型(字典task_additional_fee_type) */
    private String feeType;
 
    /** 费用名称 */
    private String feeName;
 
    /** 单价 */
    private BigDecimal unitAmount;
 
    /** 数量 */
    private Integer quantity;
 
    /** 总金额 */
    private BigDecimal totalAmount;
 
    /** 创建者 */
    private String createdBy;
 
    /** 创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createdTime;
 
    /** 旧系统附加费用记录ID(PaidMoney_Add.id) */
    private Long pid;
 
    /** 同步状态:0未同步,1同步中,2同步成功,3同步失败 */
    private Integer syncStatus;
 
    /** 同步时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date syncTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getTaskId() {
        return taskId;
    }
 
    public void setTaskId(Long taskId) {
        this.taskId = taskId;
    }
 
    public String getFeeType() {
        return feeType;
    }
 
    public void setFeeType(String feeType) {
        this.feeType = feeType;
    }
 
    public String getFeeName() {
        return feeName;
    }
 
    public void setFeeName(String feeName) {
        this.feeName = feeName;
    }
 
    public BigDecimal getUnitAmount() {
        return unitAmount;
    }
 
    public void setUnitAmount(BigDecimal unitAmount) {
        this.unitAmount = unitAmount;
    }
 
    public Integer getQuantity() {
        return quantity;
    }
 
    public void setQuantity(Integer quantity) {
        this.quantity = quantity;
    }
 
    public BigDecimal getTotalAmount() {
        return totalAmount;
    }
 
    public void setTotalAmount(BigDecimal totalAmount) {
        this.totalAmount = totalAmount;
    }
 
    public String getCreatedBy() {
        return createdBy;
    }
 
    public void setCreatedBy(String createdBy) {
        this.createdBy = createdBy;
    }
 
    public Date getCreatedTime() {
        return createdTime;
    }
 
    public void setCreatedTime(Date createdTime) {
        this.createdTime = createdTime;
    }
 
    public Long getPid() {
        return pid;
    }
 
    public void setPid(Long pid) {
        this.pid = pid;
    }
 
    public Integer getSyncStatus() {
        return syncStatus;
    }
 
    public void setSyncStatus(Integer syncStatus) {
        this.syncStatus = syncStatus;
    }
 
    public Date getSyncTime() {
        return syncTime;
    }
 
    public void setSyncTime(Date syncTime) {
        this.syncTime = syncTime;
    }
 
    @Override
    public String toString() {
        return "SysTaskAdditionalFee{" +
                "id=" + id +
                ", taskId=" + taskId +
                ", feeType='" + feeType + '\'' +
                ", feeName='" + feeName + '\'' +
                ", unitAmount=" + unitAmount +
                ", quantity=" + quantity +
                ", totalAmount=" + totalAmount +
                ", createdBy='" + createdBy + '\'' +
                ", createdTime=" + createdTime +
                ", pid=" + pid +
                ", syncStatus=" + syncStatus +
                ", syncTime=" + syncTime +
                '}';
    }
}