nili 4 months ago
parent
commit
09c5175562
  1. 2
      game-service/src/main/java/awesome/group/game/service/bo/matrix/MatrixAppBo.java

2
game-service/src/main/java/awesome/group/game/service/bo/matrix/MatrixAppBo.java

@ -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();

Loading…
Cancel
Save