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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
| using System;
|
| namespace HotelPms.Data.Common;
|
| /// <summary>
| ///
| /// </summary>
| public enum ETableActionType : int
| {
| CustomSql = 0,
| RoomTypeMasterGrid = 1,
| BuildingMasterGrid = 2,
| Pagination = 3,
| ReportMaster = 4,
| DemoMasterGrid = 5,
| RoomViewTabMasterGrid = 6,
| RoomViewLayoutGrid = 7,
| RoomViewState = 8,
| RoomStatusMasterGrid = 9,
| UpdateRoomStatus = 10,
| HotelMasterGrid = 11,
|
| PostNoSearch = 1000,
| AddressSearch = 1001,
|
| MasterName = 2000,
| RoomTypeBase = 2001,
| RoomTypeList = 2002,
| SalesLoginList = 2003,
| SalesLoginName = 2004,
|
| HotelDate = 9000,
| Sequence = 9001,
| TaxRate = 9002,
| }
|
| public enum ESeqType : int
| {
| Use = 0,
| UseDetail,
| UsePerson,
| ReceiptID,
| ReceiptNo,
| Sale,
| Pay,
| }
|
| public enum ESetActionType : int
| {
| CustomSql = 0,
| ColSetting = 1,
| /// <summary>
| /// 客室状況画面の日別表示データ
| /// </summary>
| RoomView = 2,
| }
|
| public class GrpcEnum
| {
| }
|
|