old mode 100644
new mode 100755
| | |
| | | **/ |
| | | public class NoticeDto extends PageDto implements Serializable { |
| | | |
| | | private String noticeTypeCd; |
| | | private String context; |
| | | private String startTime; |
| | | private String communityId; |
| | | private String title; |
| | | private String userId; |
| | | private String noticeId; |
| | | public static final String STATE_WAIT = "1000";// 等待房屋 |
| | | public static final String STATE_DOING = "2000";//处理中 |
| | | public static final String STATE_FINISH = "3000";//处理完成 |
| | | |
| | | public static final String OBJ_TYPE_COMMUNITY = "001";//小区 |
| | | public static final String OBJ_TYPE_FLOOR = "002";//楼栋 |
| | | public static final String OBJ_TYPE_UNIT = "003";//单元 |
| | | public static final String OBJ_TYPE_ROOM = "004";//单元 |
| | | public static final String OBJ_TYPE_ALL = "005";//单元 |
| | | |
| | | public static final String NOTICE_TYPE_OWNER_WECHAT = "1003";//发送给业主微信 |
| | | |
| | | private String noticeTypeCd; |
| | | private String[] noticeTypeCds; |
| | | private String context; |
| | | private String startTime; |
| | | private String endTime; |
| | | private String communityId; |
| | | private String title; |
| | | private String userId; |
| | | private String noticeId; |
| | | private String objType; |
| | | private String objId; |
| | | private String objName; |
| | | private String state; |
| | | private String stateName; |
| | | |
| | | private Date createTime; |
| | | |
| | | private String statusCd = "0"; |
| | | private String noticeTypeCdName; |
| | | |
| | | private String statusCd = "0"; |
| | | |
| | | public String getNoticeTypeCd() { |
| | | return noticeTypeCd; |
| | | } |
| | | public void setNoticeTypeCd(String noticeTypeCd) { |
| | | |
| | | public void setNoticeTypeCd(String noticeTypeCd) { |
| | | this.noticeTypeCd = noticeTypeCd; |
| | | } |
| | | public String getContext() { |
| | | |
| | | public String getContext() { |
| | | return context; |
| | | } |
| | | public void setContext(String context) { |
| | | |
| | | public void setContext(String context) { |
| | | this.context = context; |
| | | } |
| | | public String getStartTime() { |
| | | |
| | | public String getStartTime() { |
| | | return startTime; |
| | | } |
| | | public void setStartTime(String startTime) { |
| | | |
| | | public void setStartTime(String startTime) { |
| | | this.startTime = startTime; |
| | | } |
| | | public String getCommunityId() { |
| | | |
| | | public String getCommunityId() { |
| | | return communityId; |
| | | } |
| | | public void setCommunityId(String communityId) { |
| | | |
| | | public void setCommunityId(String communityId) { |
| | | this.communityId = communityId; |
| | | } |
| | | public String getTitle() { |
| | | |
| | | public String getTitle() { |
| | | return title; |
| | | } |
| | | public void setTitle(String title) { |
| | | |
| | | public void setTitle(String title) { |
| | | this.title = title; |
| | | } |
| | | public String getUserId() { |
| | | |
| | | public String getUserId() { |
| | | return userId; |
| | | } |
| | | public void setUserId(String userId) { |
| | | |
| | | public void setUserId(String userId) { |
| | | this.userId = userId; |
| | | } |
| | | public String getNoticeId() { |
| | | |
| | | public String getNoticeId() { |
| | | return noticeId; |
| | | } |
| | | public void setNoticeId(String noticeId) { |
| | | |
| | | public void setNoticeId(String noticeId) { |
| | | this.noticeId = noticeId; |
| | | } |
| | | |
| | |
| | | public void setStatusCd(String statusCd) { |
| | | this.statusCd = statusCd; |
| | | } |
| | | |
| | | public String getEndTime() { |
| | | return endTime; |
| | | } |
| | | |
| | | public void setEndTime(String endTime) { |
| | | this.endTime = endTime; |
| | | } |
| | | |
| | | public String getNoticeTypeCdName() { |
| | | return noticeTypeCdName; |
| | | } |
| | | |
| | | public void setNoticeTypeCdName(String noticeTypeCdName) { |
| | | this.noticeTypeCdName = noticeTypeCdName; |
| | | } |
| | | |
| | | public String getObjType() { |
| | | return objType; |
| | | } |
| | | |
| | | public void setObjType(String objType) { |
| | | this.objType = objType; |
| | | } |
| | | |
| | | public String getObjId() { |
| | | return objId; |
| | | } |
| | | |
| | | public void setObjId(String objId) { |
| | | this.objId = objId; |
| | | } |
| | | |
| | | public String getState() { |
| | | return state; |
| | | } |
| | | |
| | | public void setState(String state) { |
| | | this.state = state; |
| | | } |
| | | |
| | | public String getStateName() { |
| | | return stateName; |
| | | } |
| | | |
| | | public void setStateName(String stateName) { |
| | | this.stateName = stateName; |
| | | } |
| | | |
| | | public String getObjName() { |
| | | return objName; |
| | | } |
| | | |
| | | public void setObjName(String objName) { |
| | | this.objName = objName; |
| | | } |
| | | |
| | | public String[] getNoticeTypeCds() { |
| | | return noticeTypeCds; |
| | | } |
| | | |
| | | public void setNoticeTypeCds(String[] noticeTypeCds) { |
| | | this.noticeTypeCds = noticeTypeCds; |
| | | } |
| | | } |