61 lines
1.5 KiB
VB.net
61 lines
1.5 KiB
VB.net
|
|
Imports System.Xml.Serialization
|
|||
|
|
|
|||
|
|
<XmlRoot("ProjectInfo")>
|
|||
|
|
Public Class ProjectInfo
|
|||
|
|
|
|||
|
|
Public Structure StrutRoomType
|
|||
|
|
Public structRoomType_ID As Integer
|
|||
|
|
Public structRoomType_Name As String
|
|||
|
|
Public structRoomType_XML_Filename As String
|
|||
|
|
Public structRoomType_RCU_MN As String
|
|||
|
|
Public structRoomType_Description As String
|
|||
|
|
Public structRoomType_ConfigVersion As Integer
|
|||
|
|
Public structRoomType_Passwread As String
|
|||
|
|
Public structRoomType_CfgCurrVer As String
|
|||
|
|
Public structRoomType_HotelID As String
|
|||
|
|
Public structRoomType_App_Cfg_For_L2 As string
|
|||
|
|
Public structRoomType_App_Cfg_For_L4 As string
|
|||
|
|
'Public structRoomType_OldID As Integer
|
|||
|
|
End Structure
|
|||
|
|
|
|||
|
|
|
|||
|
|
''' <summary>
|
|||
|
|
''' 客户索引
|
|||
|
|
''' </summary>
|
|||
|
|
''' <returns></returns>
|
|||
|
|
Public Property VerderIndex As String
|
|||
|
|
|
|||
|
|
''' <summary>
|
|||
|
|
''' 客户名称
|
|||
|
|
''' </summary>
|
|||
|
|
''' <returns></returns>
|
|||
|
|
Public Property VerdorName As String
|
|||
|
|
|
|||
|
|
''' <summary>
|
|||
|
|
''' 酒店ID
|
|||
|
|
''' </summary>
|
|||
|
|
''' <returns></returns>
|
|||
|
|
Public Property HotelIndex As String
|
|||
|
|
|
|||
|
|
Public Property HotelCode As String
|
|||
|
|
|
|||
|
|
''' <summary>
|
|||
|
|
''' 酒店名称
|
|||
|
|
''' </summary>
|
|||
|
|
''' <returns></returns>
|
|||
|
|
Public Property HotelName As String
|
|||
|
|
|
|||
|
|
Public Property CurrentSelectedRoomTypeIdx As Integer
|
|||
|
|
|
|||
|
|
''' <summary>
|
|||
|
|
''' 户型链表
|
|||
|
|
''' </summary>
|
|||
|
|
Public RoomType() As StrutRoomType
|
|||
|
|
|
|||
|
|
Public Sub ReDim_RoomType(intMaxNum As Integer)
|
|||
|
|
ReDim RoomType(intMaxNum)
|
|||
|
|
End Sub
|
|||
|
|
|
|||
|
|
|
|||
|
|
End Class
|