|
@@ -11,7 +11,7 @@ public class Job implements java.io.Serializable{
|
|
|
@Id
|
|
|
private String id;
|
|
|
|
|
|
- private String desciption;
|
|
|
+ private String description;
|
|
|
|
|
|
private String name;
|
|
|
|
|
@@ -29,9 +29,9 @@ public class Job implements java.io.Serializable{
|
|
|
|
|
|
private String log_location;
|
|
|
|
|
|
- public Job(String id, String desciption, String name, String create_time_millis, String device_model, String device_brand, String device_os, String script_location, String report_location, String log_location) {
|
|
|
+ public Job(String id, String description, String name, String create_time_millis, String device_model, String device_brand, String device_os, String script_location, String report_location, String log_location) {
|
|
|
this.id = id;
|
|
|
- this.desciption = desciption;
|
|
|
+ this.description = description;
|
|
|
this.name = name;
|
|
|
this.create_time_millis = create_time_millis;
|
|
|
this.device_model = device_model;
|
|
@@ -50,12 +50,12 @@ public class Job implements java.io.Serializable{
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public String getDesciption() {
|
|
|
- return desciption;
|
|
|
+ public String getDescription() {
|
|
|
+ return description;
|
|
|
}
|
|
|
|
|
|
- public void setDesciption(String desciption) {
|
|
|
- this.desciption = desciption;
|
|
|
+ public void setDescription(String desciption) {
|
|
|
+ this.description = desciption;
|
|
|
}
|
|
|
|
|
|
public String getName() {
|