1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| package com.matrix.system.shopXcx.dto;
|
| public class YYHour {
|
| private String hour;
|
| private String atlable;
|
| /**
| * 1可以预约,2已过期,3已选择
| */
| private Integer status;
|
| public String getHour() {
| return hour;
| }
|
| public void setHour(String hour) {
| this.hour = hour;
| }
|
| public String getAtlable() {
| return atlable;
| }
|
| public void setAtlable(String atlable) {
| this.atlable = atlable;
| }
|
| public Integer getStatus() {
| return status;
| }
|
| public void setStatus(Integer status) {
| this.status = status;
| }
| }
|
|