| | |
| | | **/ |
| | | public class CommunitySpacePersonTimeDto extends PageDto implements Serializable { |
| | | |
| | | public static final String STATE_WAIT_CONFIRM = "W"; //待核销 |
| | | public static final String STATE_FINISH = "C"; // 核销完成 |
| | | |
| | | public static final String STATE_CL = "CL";//取消预约 |
| | | |
| | | private String spaceId; |
| | | private String cspId; |
| | | private String[] cspIds; |
| | | private String hours; |
| | | private String timeId; |
| | | private String communityId; |
| | | |
| | | private String appointmentTime; |
| | | |
| | | private String state; |
| | | private String[] states; |
| | | |
| | | |
| | | private Date createTime; |
| | |
| | | public void setCspIds(String[] cspIds) { |
| | | this.cspIds = cspIds; |
| | | } |
| | | |
| | | public String getAppointmentTime() { |
| | | return appointmentTime; |
| | | } |
| | | |
| | | public void setAppointmentTime(String appointmentTime) { |
| | | this.appointmentTime = appointmentTime; |
| | | } |
| | | |
| | | public String getState() { |
| | | return state; |
| | | } |
| | | |
| | | public void setState(String state) { |
| | | this.state = state; |
| | | } |
| | | |
| | | public String[] getStates() { |
| | | return states; |
| | | } |
| | | |
| | | public void setStates(String[] states) { |
| | | this.states = states; |
| | | } |
| | | } |