| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- package com.happy.Model;
- import java.util.Date;
- /**
- * 订单实体类
- */
- public class Booking {
- private int id;
- private String orderNum; // 订单号
- private String orderStatus; // 状态,1待支付,2已支付,3待入住,4已入住,5已消费,6支付超时,7已取消,8已退单,9已退款
- private String userIdnumber; // 住客身份号
- private String userName;//住客姓名
- private String userPhone;// 住客手机号
- private String hotelId;// 民宿id
- private String hotelName;// 民宿名称
- private String hotelHposition; // 民宿位置
- private String hotelHpositionWens; // 民宿经纬度
- private String hotelPhone; // 民宿联系电话
- private String hotelPerson; // 民宿联系人
- private String hotelManagerId; // 所属商家id
- private String hotelTownship; // 民宿所属乡镇
- private String hotelConfig; // 民宿配置
- private String hotelType; // 民宿类型
- private String hotelIsCanorder; // 是否可取消订单
- private String houseId; // 房型id
- private String houseName; // 户型名称
- private String houseConfig; //房间配置
- private double houseUnitPrice; // 房间单价
- private double houseTotalPrice; // 总价
- private int houseOrderNumber; // 订房数量
- private String houseAreas; // 房型面积
- private String houseRemake; // 房型备注
- private Date orderStartTime; // 订房开始时间
- private Date orderEndTime; // 订房结束时间
- private String orderLiveTime;// 订房入住时间合计
- private String orderRemake; // 订房备注
- private Date createTime; // 订单创建时间
- private String createUserid; //订单创建人id
- private Date updateTime; // 订单更新时间
- private Date payTime; // 实际支付时间
- private double payAccount; // 实际支付金额
- private String payWay; // 支付方式:默认使用微信支付
- private String refundWay; // 退款方式
- private double refundAmount; // 退款金额
- private Date refundTime; // 退款时间
- private Date checkOutTime; // 离店时间
- private String remake; // 备注信息
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public String getOrderNum() {
- return orderNum;
- }
- public void setOrderNum(String orderNum) {
- this.orderNum = orderNum;
- }
- public String getOrderStatus() {
- return orderStatus;
- }
- public void setOrderStatus(String orderStatus) {
- this.orderStatus = orderStatus;
- }
- public String getUserIdnumber() {
- return userIdnumber;
- }
- public void setUserIdnumber(String userIdnumber) {
- this.userIdnumber = userIdnumber;
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String getUserPhone() {
- return userPhone;
- }
- public void setUserPhone(String userPhone) {
- this.userPhone = userPhone;
- }
- public String getHotelId() {
- return hotelId;
- }
- public void setHotelId(String hotelId) {
- this.hotelId = hotelId;
- }
- public String getHotelName() {
- return hotelName;
- }
- public void setHotelName(String hotelName) {
- this.hotelName = hotelName;
- }
- public String getHotelHposition() {
- return hotelHposition;
- }
- public void setHotelHposition(String hotelHposition) {
- this.hotelHposition = hotelHposition;
- }
- public String getHotelHpositionWens() {
- return hotelHpositionWens;
- }
- public void setHotelHpositionWens(String hotelHpositionWens) {
- this.hotelHpositionWens = hotelHpositionWens;
- }
- public String getHotelPhone() {
- return hotelPhone;
- }
- public void setHotelPhone(String hotelPhone) {
- this.hotelPhone = hotelPhone;
- }
- public String getHotelPerson() {
- return hotelPerson;
- }
- public void setHotelPerson(String hotelPerson) {
- this.hotelPerson = hotelPerson;
- }
- public String getHotelTownship() {
- return hotelTownship;
- }
- public void setHotelTownship(String hotelTownship) {
- this.hotelTownship = hotelTownship;
- }
- public String getHotelConfig() {
- return hotelConfig;
- }
- public void setHotelConfig(String hotelConfig) {
- this.hotelConfig = hotelConfig;
- }
- public String getHotelType() {
- return hotelType;
- }
- public void setHotelType(String hotelType) {
- this.hotelType = hotelType;
- }
- public String getHotelIsCanorder() {
- return hotelIsCanorder;
- }
- public void setHotelIsCanorder(String hotelIsCanorder) {
- this.hotelIsCanorder = hotelIsCanorder;
- }
- public String getHouseId() {
- return houseId;
- }
- public void setHouseId(String houseId) {
- this.houseId = houseId;
- }
- public String getHouseName() {
- return houseName;
- }
- public void setHouseName(String houseName) {
- this.houseName = houseName;
- }
- public String getHouseConfig() {
- return houseConfig;
- }
- public void setHouseConfig(String houseConfig) {
- this.houseConfig = houseConfig;
- }
- public double getHouseUnitPrice() {
- return houseUnitPrice;
- }
- public void setHouseUnitPrice(double houseUnitPrice) {
- this.houseUnitPrice = houseUnitPrice;
- }
- public double getHouseTotalPrice() {
- return houseTotalPrice;
- }
- public void setHouseTotalPrice(double houseTotalPrice) {
- this.houseTotalPrice = houseTotalPrice;
- }
- public int getHouseOrderNumber() {
- return houseOrderNumber;
- }
- public void setHouseOrderNumber(int houseOrderNumber) {
- this.houseOrderNumber = houseOrderNumber;
- }
- public String getHouseAreas() {
- return houseAreas;
- }
- public void setHouseAreas(String houseAreas) {
- this.houseAreas = houseAreas;
- }
- public String getHouseRemake() {
- return houseRemake;
- }
- public void setHouseRemake(String houseRemake) {
- this.houseRemake = houseRemake;
- }
- public Date getOrderStartTime() {
- return orderStartTime;
- }
- public void setOrderStartTime(Date orderStartTime) {
- this.orderStartTime = orderStartTime;
- }
- public Date getOrderEndTime() {
- return orderEndTime;
- }
- public void setOrderEndTime(Date orderEndTime) {
- this.orderEndTime = orderEndTime;
- }
- public String getOrderLiveTime() {
- return orderLiveTime;
- }
- public void setOrderLiveTime(String orderLiveTime) {
- this.orderLiveTime = orderLiveTime;
- }
- public String getOrderRemake() {
- return orderRemake;
- }
- public void setOrderRemake(String orderRemake) {
- this.orderRemake = orderRemake;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getCreateUserid() {
- return createUserid;
- }
- public void setCreateUserid(String createUserid) {
- this.createUserid = createUserid;
- }
- public Date getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- public Date getPayTime() {
- return payTime;
- }
- public void setPayTime(Date payTime) {
- this.payTime = payTime;
- }
- public double getPayAccount() {
- return payAccount;
- }
- public void setPayAccount(double payAccount) {
- this.payAccount = payAccount;
- }
- public String getPayWay() {
- return payWay;
- }
- public void setPayWay(String payWay) {
- this.payWay = payWay;
- }
- public String getRefundWay() {
- return refundWay;
- }
- public void setRefundWay(String refundWay) {
- this.refundWay = refundWay;
- }
- public double getRefundAmount() {
- return refundAmount;
- }
- public void setRefundAmount(double refundAmount) {
- this.refundAmount = refundAmount;
- }
- public Date getRefundTime() {
- return refundTime;
- }
- public void setRefundTime(Date refundTime) {
- this.refundTime = refundTime;
- }
- public Date getCheckOutTime() {
- return checkOutTime;
- }
- public void setCheckOutTime(Date checkOutTime) {
- this.checkOutTime = checkOutTime;
- }
- public String getRemake() {
- return remake;
- }
- public void setRemake(String remake) {
- this.remake = remake;
- }
- public String getHotelManagerId() {
- return hotelManagerId;
- }
- public void setHotelManagerId(String hotelManagerId) {
- this.hotelManagerId = hotelManagerId;
- }
- }
|