1 changed files with 249 additions and 0 deletions
@ -0,0 +1,249 @@ |
|||||
|
package com.xujie.pms.data; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import com.xujie.common.utils.QueryPage; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
public class EamWorkPlanData extends QueryPage { |
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String site; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String planID; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String planDesc; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String objectID; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String functionType; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String propertiesCode; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String operator; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private Integer planPeriod; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String status; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||
|
private Date planStartDate; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||
|
private Date planEndDate; |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||
|
private Date nextWorkDate; |
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd hh:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8") |
||||
|
private Date createdDate; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd hh:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8") |
||||
|
private Date updateDate; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String updateBy; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private Integer version; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String remark; |
||||
|
|
||||
|
public String getSite() { |
||||
|
return site; |
||||
|
} |
||||
|
|
||||
|
public void setSite(String site) { |
||||
|
this.site = site; |
||||
|
} |
||||
|
|
||||
|
public String getPlanID() { |
||||
|
return planID; |
||||
|
} |
||||
|
|
||||
|
public void setPlanID(String planID) { |
||||
|
this.planID = planID; |
||||
|
} |
||||
|
|
||||
|
public String getPlanDesc() { |
||||
|
return planDesc; |
||||
|
} |
||||
|
|
||||
|
public void setPlanDesc(String planDesc) { |
||||
|
this.planDesc = planDesc; |
||||
|
} |
||||
|
|
||||
|
public String getObjectID() { |
||||
|
return objectID; |
||||
|
} |
||||
|
|
||||
|
public void setObjectID(String objectID) { |
||||
|
this.objectID = objectID; |
||||
|
} |
||||
|
|
||||
|
public String getFunctionType() { |
||||
|
return functionType; |
||||
|
} |
||||
|
|
||||
|
public void setFunctionType(String functionType) { |
||||
|
this.functionType = functionType; |
||||
|
} |
||||
|
|
||||
|
public String getPropertiesCode() { |
||||
|
return propertiesCode; |
||||
|
} |
||||
|
|
||||
|
public void setPropertiesCode(String propertiesCode) { |
||||
|
this.propertiesCode = propertiesCode; |
||||
|
} |
||||
|
|
||||
|
public String getOperator() { |
||||
|
return operator; |
||||
|
} |
||||
|
|
||||
|
public void setOperator(String operator) { |
||||
|
this.operator = operator; |
||||
|
} |
||||
|
|
||||
|
public Integer getPlanPeriod() { |
||||
|
return planPeriod; |
||||
|
} |
||||
|
|
||||
|
public void setPlanPeriod(Integer planPeriod) { |
||||
|
this.planPeriod = planPeriod; |
||||
|
} |
||||
|
|
||||
|
public String getStatus() { |
||||
|
return status; |
||||
|
} |
||||
|
|
||||
|
public void setStatus(String status) { |
||||
|
this.status = status; |
||||
|
} |
||||
|
|
||||
|
public Date getPlanStartDate() { |
||||
|
return planStartDate; |
||||
|
} |
||||
|
|
||||
|
public void setPlanStartDate(Date planStartDate) { |
||||
|
this.planStartDate = planStartDate; |
||||
|
} |
||||
|
|
||||
|
public Date getPlanEndDate() { |
||||
|
return planEndDate; |
||||
|
} |
||||
|
|
||||
|
public void setPlanEndDate(Date planEndDate) { |
||||
|
this.planEndDate = planEndDate; |
||||
|
} |
||||
|
|
||||
|
public Date getCreatedDate() { |
||||
|
return createdDate; |
||||
|
} |
||||
|
|
||||
|
public void setCreatedDate(Date createdDate) { |
||||
|
this.createdDate = createdDate; |
||||
|
} |
||||
|
|
||||
|
public String getCreatedBy() { |
||||
|
return createdBy; |
||||
|
} |
||||
|
|
||||
|
public void setCreatedBy(String createdBy) { |
||||
|
this.createdBy = createdBy; |
||||
|
} |
||||
|
|
||||
|
public Date getUpdateDate() { |
||||
|
return updateDate; |
||||
|
} |
||||
|
|
||||
|
public void setUpdateDate(Date updateDate) { |
||||
|
this.updateDate = updateDate; |
||||
|
} |
||||
|
|
||||
|
public String getUpdateBy() { |
||||
|
return updateBy; |
||||
|
} |
||||
|
|
||||
|
public void setUpdateBy(String updateBy) { |
||||
|
this.updateBy = updateBy; |
||||
|
} |
||||
|
|
||||
|
public Integer getVersion() { |
||||
|
return version; |
||||
|
} |
||||
|
|
||||
|
public void setVersion(Integer version) { |
||||
|
this.version = version; |
||||
|
} |
||||
|
|
||||
|
public String getRemark() { |
||||
|
return remark; |
||||
|
} |
||||
|
|
||||
|
public void setRemark(String remark) { |
||||
|
this.remark = remark; |
||||
|
} |
||||
|
|
||||
|
public Date getNextWorkDate() { |
||||
|
return nextWorkDate; |
||||
|
} |
||||
|
|
||||
|
public void setNextWorkDate(Date nextWorkDate) { |
||||
|
this.nextWorkDate = nextWorkDate; |
||||
|
} |
||||
|
} |
||||
|
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue