测试修改
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package com.yunbao.common.bean;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class StarChallengeStatusModel extends BaseModel {
|
||||
@@ -28,6 +30,33 @@ public class StarChallengeStatusModel extends BaseModel {
|
||||
private String taskName1;
|
||||
@SerializedName("taskName2")
|
||||
private String taskName2;
|
||||
//活动地址
|
||||
@SerializedName("activityUrl")
|
||||
private String activityUrl;
|
||||
|
||||
private String type = "2";
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public StarChallengeStatusModel setType(String type) {
|
||||
this.type = type;
|
||||
return this;
|
||||
}
|
||||
|
||||
public StarChallengeStatusModel(String activityUrl) {
|
||||
this.activityUrl = activityUrl;
|
||||
}
|
||||
|
||||
public String getActivityUrl() {
|
||||
return activityUrl;
|
||||
}
|
||||
|
||||
public StarChallengeStatusModel setActivityUrl(String activityUrl) {
|
||||
this.activityUrl = activityUrl;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getTaskName1() {
|
||||
return taskName1;
|
||||
|
||||
Reference in New Issue
Block a user