|
@ -5,6 +5,7 @@ import awesome.group.game.service.bo.citrus.AppCashConfig; |
|
|
import org.springframework.util.StringUtils; |
|
|
import org.springframework.util.StringUtils; |
|
|
|
|
|
|
|
|
public class MatrixAppBo { |
|
|
public class MatrixAppBo { |
|
|
|
|
|
public Integer id; |
|
|
public String name; |
|
|
public String name; |
|
|
public String code; |
|
|
public String code; |
|
|
public String img; |
|
|
public String img; |
|
@ -20,6 +21,7 @@ public class MatrixAppBo { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public MatrixAppBo(MatrixApp app) { |
|
|
public MatrixAppBo(MatrixApp app) { |
|
|
|
|
|
this.id = app.getId(); |
|
|
this.name = app.getName(); |
|
|
this.name = app.getName(); |
|
|
this.code = app.getCode(); |
|
|
this.code = app.getCode(); |
|
|
this.img = app.getImg(); |
|
|
this.img = app.getImg(); |
|
|