1
zyy
2 days ago 9bb3ab4a3fb0b1d20dcc87979a19ca9625a4bfc8
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
package com.yami.trading.bean.miner;
 
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.yami.trading.common.domain.UUIDEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 矿机配置参数
 *
 */
 
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_miner_para")
public class MinerPara extends UUIDEntity {
 
    private static final long serialVersionUID = 1639941028310043811L;
 
    /**
     * 矿机id
     */
    private String miner_id;
    /**
     * 购买周期
     */
    private int cycle;
 
    /**
     * 购买价格
     */
    private double amount;
 
    public int getCycle() {
        return cycle;
    }
 
    public double getAmount() {
        return amount;
    }
 
    public void setCycle(int cycle) {
        this.cycle = cycle;
    }
 
    public void setAmount(double amount) {
        this.amount = amount;
    }
 
    public String getMiner_id() {
        return miner_id;
    }
 
    public void setMiner_id(String miner_id) {
        this.miner_id = miner_id;
    }
 
    
    
    
 
 
    
    
}