Helius
2021-11-26 882f5815e69bc9dc2270d8c9ecc94acbeecad4a3
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
package com.xcong.excoin.websocket.fish.model;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2021-11-26
 **/
@Data
public class MsgModel {
 
    /**
     * 消耗金币
     */
    private BigDecimal consume;
 
    /**
     * 获得金币
     */
    private int obtain;
 
    /**
     * 用户ID
     */
    private Long memberId;
 
    /**
     * 大炮编码
     */
    private String fortCode;
 
    public MsgModel(BigDecimal consume, int obtain, Long memberId, String fortCode) {
        this.consume = consume;
        this.obtain = obtain;
        this.memberId = memberId;
        this.fortCode = fortCode;
    }
}