| | |
| | | **/ |
| | | public class CommunitySpacePersonDto extends PageDto implements Serializable { |
| | | |
| | | public static final String STATE_S = "预约成功"; |
| | | public static final String STATE_F = "预约失败"; |
| | | public static final String STATE_W = "待审核"; |
| | | public static final String STATE_WP = "待支付"; |
| | | public static final String STATE_S = "S"; //预约成功 |
| | | public static final String STATE_F = "F";//预约失败 |
| | | public static final String STATE_W = "W";//待审核 |
| | | public static final String STATE_WP = "WP";//待支付 |
| | | public static final String STATE_CL = "CL";//取消预约 |
| | | |
| | | private String receivableAmount; |
| | | private String payWay; |
| | |
| | | private String personName; |
| | | private String spaceId; |
| | | private String venueId; |
| | | private String venueName; |
| | | |
| | | private String spaceName; |
| | | private String cspId; |
| | |
| | | private String stateName; |
| | | private String personTel; |
| | | private String communityId; |
| | | |
| | | private String orderId; |
| | | |
| | | private List<CommunitySpacePersonTimeDto> times; |
| | | |
| | |
| | | public void setVenueId(String venueId) { |
| | | this.venueId = venueId; |
| | | } |
| | | |
| | | public String getOrderId() { |
| | | return orderId; |
| | | } |
| | | |
| | | public void setOrderId(String orderId) { |
| | | this.orderId = orderId; |
| | | } |
| | | |
| | | public String getVenueName() { |
| | | return venueName; |
| | | } |
| | | |
| | | public void setVenueName(String venueName) { |
| | | this.venueName = venueName; |
| | | } |
| | | } |