Commit e6a14b3e authored by 赵建伟's avatar 赵建伟

update codes

parent d0e4cdd8
......@@ -26,7 +26,7 @@ $JAR_DIR/ctr-estimate-1.0-SNAPSHOT.jar \
--retryInteral 3000 \
--checkpointPath 'hdfs://bj-gmei-hdfs/user/data/flink/ctr-estimate/checkpoint' \
--parallelism 6 \
--startTime '2020-04-03 20:40:00' \
--startTime '2020-04-04 10:37:00' \
>> /data/log/ctr-estimate/ctr-estimate.out 2>&1 &
tail -10f /data/log/ctr-estimate/ctr-estimate.out
......
......@@ -8,9 +8,9 @@ package com.gmei.data.ctr.bean;
**/
public class DeviceCurrentEstimateClk {
private String deviceId;
private Long answerCardClick;
private Long contentCardClick;
private Long tractateCardClick;
private long answerCardClick;
private long contentCardClick;
private long tractateCardClick;
private String partitionDate;
private String lastUpdateTime;
......@@ -35,27 +35,27 @@ public class DeviceCurrentEstimateClk {
this.deviceId = deviceId;
}
public Long getContentCardClick() {
public long getContentCardClick() {
return contentCardClick;
}
public void setContentCardClick(Long contentCardClick) {
public void setContentCardClick(long contentCardClick) {
this.contentCardClick = contentCardClick;
}
public Long getTractateCardClick() {
public long getTractateCardClick() {
return tractateCardClick;
}
public void setTractateCardClick(Long tractateCardClick) {
public void setTractateCardClick(long tractateCardClick) {
this.tractateCardClick = tractateCardClick;
}
public Long getAnswerCardClick() {
public long getAnswerCardClick() {
return answerCardClick;
}
public void setAnswerCardClick(Long answerCardClick) {
public void setAnswerCardClick(long answerCardClick) {
this.answerCardClick = answerCardClick;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment