|
|
@ -10,12 +10,18 @@ import java.util.List; |
|
|
|
|
|
|
|
|
public class EamWorkOrderInData extends EamWorkOrderData{ |
|
|
public class EamWorkOrderInData extends EamWorkOrderData{ |
|
|
private String objectDesc; |
|
|
private String objectDesc; |
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
|
|
private Date startDate; |
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
|
|
private Date endDate; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
private Date startDate; |
|
|
|
|
|
|
|
|
private Date startDate2; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
private Date endDate; |
|
|
|
|
|
|
|
|
private Date endDate2; |
|
|
private String userId; |
|
|
private String userId; |
|
|
private String planOperatorName; |
|
|
private String planOperatorName; |
|
|
private String actualOperatorName; |
|
|
private String actualOperatorName; |
|
|
@ -63,6 +69,22 @@ public class EamWorkOrderInData extends EamWorkOrderData{ |
|
|
|
|
|
|
|
|
private String searchType; |
|
|
private String searchType; |
|
|
|
|
|
|
|
|
|
|
|
public Date getStartDate2() { |
|
|
|
|
|
return startDate2; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setStartDate2(Date startDate2) { |
|
|
|
|
|
this.startDate2 = startDate2; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public Date getEndDate2() { |
|
|
|
|
|
return endDate2; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setEndDate2(Date endDate2) { |
|
|
|
|
|
this.endDate2 = endDate2; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public String getSearchType() { |
|
|
public String getSearchType() { |
|
|
return searchType; |
|
|
return searchType; |
|
|
} |
|
|
} |
|
|
|