nili 3 months ago
parent
commit
6d79ebdae8
  1. 2
      game-service/src/main/java/awesome/group/game/service/bo/MatrixAdvRecordSimple.java

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

@ -3,6 +3,7 @@ package awesome.group.game.service.bo;
import awesome.group.game.dao.bean.MatrixAdvRecord;
public class MatrixAdvRecordSimple {
public Integer id;
public String deviceId;
public Integer platform;//1穿山甲,2腾讯,3百度联盟,4 Mintegral,5 快手,6游可赢,7 Sigmob,8 Admob
public Integer advType;//1横幅,2插页,3激励视频
@ -14,6 +15,7 @@ public class MatrixAdvRecordSimple {
}
public MatrixAdvRecordSimple(MatrixAdvRecord r) {
this.id = r.getId();
this.deviceId = r.getDeviceId();
this.platform = r.getPlatform();
this.advType = r.getAdvType();

Loading…
Cancel
Save