package com.lxt.seatorder.bean;

import java.util.List;

READ ALSO

/**
* Created by Lxt Jxfen on 2020/4/21.
* email: 1771874056@qq.com
*/
public class OrderRoomListBean {

private boolean success;
private DataBean data;
private String code;
private String message;

public boolean isSuccess() {
return success;
}

public void setSuccess(boolean success) {
this.success = success;
}

public DataBean getData() {
return data;
}

public void setData(DataBean data) {
this.data = data;
}

public String getCode() {
return code;
}

public void setCode(String code) {
this.code = code;
}

public String getMessage() {
return message;
}

public void setMessage(String message) {
this.message = message;
}

public static class DataBean {

private List byRoomList;
private List byTimeList;

public List getByRoomList() {
return byRoomList;
}

public void setByRoomList(List byRoomList) {
this.byRoomList = byRoomList;
}

public List getByTimeList() {
return byTimeList;
}

public void setByTimeList(List byTimeList) {
this.byTimeList = byTimeList;
}

public static class ByRoomListBean {
/**
* RoomID : 190
* RoomName : 育新一楼301
* RoomType : 1
*/

private int RoomID;
private String RoomName;
private int RoomType;

public int getRoomID() {
return RoomID;
}

public void setRoomID(int RoomID) {
this.RoomID = RoomID;
}

public String getRoomName() {
return RoomName;
}

public void setRoomName(String RoomName) {
this.RoomName = RoomName;
}

public int getRoomType() {
return RoomType;
}

public void setRoomType(int RoomType) {
this.RoomType = RoomType;
}
}

public static class ByTimeListBean {
/**
* id : 9
* Name : 上午
* startTime : 08:00
* endTime : 12:00
* isOrder : 1
*/

private int id;
private String Name;
private String startTime;
private String endTime;
private int isOrder;

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public String getName() {
return Name;
}

public void setName(String Name) {
this.Name = Name;
}

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 int getIsOrder() {
return isOrder;
}

public void setIsOrder(int isOrder) {
this.isOrder = isOrder;
}
}
}
}

Related Posts

Next Post

    Join our mailing list to get access to special deals, promotions, and insider information. Your exclusive benefits await! Enjoy personalized recommendations, first dibs on sales, and members-only content that makes you feel like a true VIP. Sign up now and start saving!

    By opting in you agree to receive emails from us and our affiliates. Your information is secure and your privacy is protected.