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; } }