| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package com.happy.dto;
- import com.happy.Model.HouseNumberStatus;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.util.List;
- @EqualsAndHashCode(callSuper = true)
- @Data
- public class HouseNumberStatusDto extends HouseNumberStatus {
- /**
- * 商家id
- */
- private String managerId;
- /**
- * 房间id集合
- */
- private List<String> houseNumberIds;
- /**
- * 房间状态集合
- */
- private List<Integer> statuses;
- /**
- * 约定:1为日历房态管理,2为单日房态管理,
- */
- private Integer showType;
- //region 订单表(booking)的一些字段
- /**
- * 订单-订单号
- */
- private String orderNum;
- /**
- * 订单-住客姓名
- */
- private String orderUserName;
- /**
- * 订单-住客手机号
- */
- private String orderUserPhone;
- /**
- * 订单-实际支付金额
- */
- private String orderPayAccount;
- /**
- * 订单-订房开始时间
- */
- private String orderStartTime;
- /**
- * 订单-订房结束时间
- */
- private String orderEndTime;
- //endregion
- }
|