3 changed files with 61 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||
package awesome.group.game.service.bo; |
|||
|
|||
import awesome.group.game.dao.bean.MatrixAdvRecord; |
|||
|
|||
public class MatrixAdvRecordSimple { |
|||
public String deviceId; |
|||
public Integer platform;//1穿山甲,2腾讯,3百度联盟,4 Mintegral,5 快手,6游可赢,7 Sigmob,8 Admob
|
|||
public Integer advType;//1横幅,2插页,3激励视频
|
|||
public Long ecpm;//单位:分
|
|||
public Long createdAt; |
|||
|
|||
public MatrixAdvRecordSimple() { |
|||
} |
|||
|
|||
public MatrixAdvRecordSimple(MatrixAdvRecord r) { |
|||
this.deviceId = r.getDeviceId(); |
|||
this.platform = r.getPlatform(); |
|||
this.advType = r.getAdvType(); |
|||
this.ecpm = r.getEcpm(); |
|||
this.createdAt = r.getCreatedAt().getTime(); |
|||
} |
|||
} |
Loading…
Reference in new issue