old mode 100644
new mode 100755
| | |
| | | **/ |
| | | public class InspectionPlanDto extends PageDto implements Serializable { |
| | | |
| | | public static final String STATE_STOP = "2020026"; |
| | | public static final String STATE_RUN = "2020025"; |
| | | |
| | | public static final String INSPECTION_PLAN_PERIOD_DAY = "2020022"; // 连续每天 |
| | | public static final String INSPECTION_PLAN_PERIOD_WEEK = "2020023"; // 连续每周 |
| | | public static final String INSPECTION_PLAN_PERIOD_NEXT_DAY = "2020024"; // 连续隔天 |
| | | |
| | | private String inspectionPlanName; |
| | | private String inspectionRouteId; |
| | | private String inspectionRouteName; |
| | |
| | | private String staffName; |
| | | private String signType; |
| | | private String startTime; |
| | | private String curTime; |
| | | private String createUserId; |
| | | private String createUserName; |
| | | private String inspectionPlanId; |
| | |
| | | private String staffId; |
| | | private Date createTime; |
| | | private String statusCd = "0"; |
| | | private String stateName; |
| | | private String inspectionPlanPeriodName; |
| | | private String signTypeName; |
| | | private String keyWord; |
| | | |
| | | |
| | | public String getInspectionPlanName() { |
| | |
| | | public void setStartTime(String startTime) { |
| | | this.startTime = startTime; |
| | | } |
| | | |
| | | public String getStateName() { |
| | | return stateName; |
| | | } |
| | | |
| | | public void setStateName(String stateName) { |
| | | this.stateName = stateName; |
| | | } |
| | | |
| | | public String getInspectionPlanPeriodName() { |
| | | return inspectionPlanPeriodName; |
| | | } |
| | | |
| | | public void setInspectionPlanPeriodName(String inspectionPlanPeriodName) { |
| | | this.inspectionPlanPeriodName = inspectionPlanPeriodName; |
| | | } |
| | | |
| | | public String getSignTypeName() { |
| | | return signTypeName; |
| | | } |
| | | |
| | | public void setSignTypeName(String signTypeName) { |
| | | this.signTypeName = signTypeName; |
| | | } |
| | | |
| | | public String getKeyWord() { |
| | | return keyWord; |
| | | } |
| | | |
| | | public void setKeyWord(String keyWord) { |
| | | this.keyWord = keyWord; |
| | | } |
| | | |
| | | public String getCurTime() { |
| | | return curTime; |
| | | } |
| | | |
| | | public void setCurTime(String curTime) { |
| | | this.curTime = curTime; |
| | | } |
| | | } |