1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package cn.lihu.jh.module.ecg.dal.dataobject.room;
|
| import cn.lihu.jh.module.ecg.enums.RoomCallingScreenEnum;
| import lombok.Data;
|
| @Data
| public class RoomProfile {
| Long roomId;
| String roomName;
|
| // 工位数量
| Integer bedNum;
|
| /**
| * @see RoomCallingScreenEnum
| */
| Integer callingScreenType;
| }
|
|