zj
2025-05-28 bcd36411feb0351347289476eb7ee9e5dd1c3b9d
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
package project.miner.job;
 
import java.io.Serializable;
import java.util.Date;
 
public class MinerOrderMessage implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = 2239789461218349202L;
 
    /**
     * 无参构造函数
     */
    public MinerOrderMessage() {
    }
 
    /**
     * 订单号
     */
    private String orderNo;
    /**
     * 收益
     */
    private double profit = 0.0D;
    /**
     * 计息时间
     */
    private Date computeDay;
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public double getProfit() {
        return profit;
    }
 
    public Date getComputeDay() {
        return computeDay;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public void setProfit(double profit) {
        this.profit = profit;
    }
 
    public void setComputeDay(Date computeDay) {
        this.computeDay = computeDay;
    }
 
 
    public MinerOrderMessage(String orderNo, double profit, Date computeDay) {
        this.orderNo = orderNo;
        this.profit = profit;
        this.computeDay = computeDay;
    }
 
 
}