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 inspectionPlanPeriodName; |
| | | private String signTypeName; |
| | | private String keyWord; |
| | | private String inspectionMonth; |
| | | private String inspectionDay; |
| | | private String inspectionWorkday; |
| | | private String startDate; |
| | | private String endDate; |
| | | private String beforeTime; |
| | | private String canReexamine; |
| | | |
| | | |
| | | public String getInspectionPlanName() { |
| | |
| | | public void setKeyWord(String keyWord) { |
| | | this.keyWord = keyWord; |
| | | } |
| | | |
| | | public String getCurTime() { |
| | | return curTime; |
| | | } |
| | | |
| | | public void setCurTime(String curTime) { |
| | | this.curTime = curTime; |
| | | } |
| | | |
| | | public String getInspectionMonth() { |
| | | return inspectionMonth; |
| | | } |
| | | |
| | | public void setInspectionMonth(String inspectionMonth) { |
| | | this.inspectionMonth = inspectionMonth; |
| | | } |
| | | |
| | | public String getInspectionDay() { |
| | | return inspectionDay; |
| | | } |
| | | |
| | | public void setInspectionDay(String inspectionDay) { |
| | | this.inspectionDay = inspectionDay; |
| | | } |
| | | |
| | | public String getInspectionWorkday() { |
| | | return inspectionWorkday; |
| | | } |
| | | |
| | | public void setInspectionWorkday(String inspectionWorkday) { |
| | | this.inspectionWorkday = inspectionWorkday; |
| | | } |
| | | |
| | | public String getStartDate() { |
| | | return startDate; |
| | | } |
| | | |
| | | public void setStartDate(String startDate) { |
| | | this.startDate = startDate; |
| | | } |
| | | |
| | | public String getEndDate() { |
| | | return endDate; |
| | | } |
| | | |
| | | public void setEndDate(String endDate) { |
| | | this.endDate = endDate; |
| | | } |
| | | |
| | | public String getBeforeTime() { |
| | | return beforeTime; |
| | | } |
| | | |
| | | public void setBeforeTime(String beforeTime) { |
| | | this.beforeTime = beforeTime; |
| | | } |
| | | |
| | | public String getCanReexamine() { |
| | | return canReexamine; |
| | | } |
| | | |
| | | public void setCanReexamine(String canReexamine) { |
| | | this.canReexamine = canReexamine; |
| | | } |
| | | } |