| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package com.java110.po.inspection;
- import java.io.Serializable;
- /**
- * @ClassName InspectionPlanPo
- * @Description TODO 巡检计划对象
- * @Author wuxw
- * @Date 2020/5/28 14:23
- * @Version 1.0
- * add by wuxw 2020/5/28
- **/
- public class InspectionPlanPo implements Serializable {
- private String inspectionPlanId;
- private String inspectionPlanName;
- private String inspectionRouteId;
- private String communityId;
- private String startTime;
- private String endTime;
- private String startDate;
- private String endDate;
- private String inspectionPlanPeriod;
- private String signType;
- private String state;
- private String remark;
- private String createUserId;
- private String createUserName;
- private String statusCd ="0";
- private String inspectionMonth;
- private String inspectionDay;
- private String inspectionWorkday;
- private String beforeTime;
- private String canReexamine;
- public String getInspectionPlanId() {
- return inspectionPlanId;
- }
- public void setInspectionPlanId(String inspectionPlanId) {
- this.inspectionPlanId = inspectionPlanId;
- }
- public String getInspectionPlanName() {
- return inspectionPlanName;
- }
- public void setInspectionPlanName(String inspectionPlanName) {
- this.inspectionPlanName = inspectionPlanName;
- }
- public String getInspectionRouteId() {
- return inspectionRouteId;
- }
- public void setInspectionRouteId(String inspectionRouteId) {
- this.inspectionRouteId = inspectionRouteId;
- }
- public String getCommunityId() {
- return communityId;
- }
- public void setCommunityId(String communityId) {
- this.communityId = communityId;
- }
- public String getStartTime() {
- return startTime;
- }
- public void setStartTime(String startTime) {
- this.startTime = startTime;
- }
- public String getEndTime() {
- return endTime;
- }
- public void setEndTime(String endTime) {
- this.endTime = endTime;
- }
- public String getInspectionPlanPeriod() {
- return inspectionPlanPeriod;
- }
- public void setInspectionPlanPeriod(String inspectionPlanPeriod) {
- this.inspectionPlanPeriod = inspectionPlanPeriod;
- }
- public String getSignType() {
- return signType;
- }
- public void setSignType(String signType) {
- this.signType = signType;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public String getCreateUserId() {
- return createUserId;
- }
- public void setCreateUserId(String createUserId) {
- this.createUserId = createUserId;
- }
- public String getCreateUserName() {
- return createUserName;
- }
- public void setCreateUserName(String createUserName) {
- this.createUserName = createUserName;
- }
- public String getStatusCd() {
- return statusCd;
- }
- public void setStatusCd(String statusCd) {
- this.statusCd = statusCd;
- }
- 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 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 getBeforeTime() {
- return beforeTime;
- }
- public void setBeforeTime(String beforeTime) {
- this.beforeTime = beforeTime;
- }
- public String getCanReexamine() {
- return canReexamine;
- }
- public void setCanReexamine(String canReexamine) {
- this.canReexamine = canReexamine;
- }
- }
|