package com.example.mina.client.base; import lombok.Builder; import lombok.Data; @Data @Builder public class MatrixCommand { /** * matrix id */ private String matrixId; /** * command type,come from MatrixConstants */ private Integer command; /** * matrix row index */ private Integer row; /** * matrix column index */ private Integer col; /** * attenuation */ private Integer attn; /** * offset */ private Integer offset; }