using System; using System.Collections.Generic; using System.Linq; using System.Web; /// /// GuaDanStatusCode 的摘要描述 /// public static class GuaDanStatusCode { public static class Bed { public const string Empty = "101"; // 空床:床位可分配 public const string Occupied = "102"; // 占用中:床位已有人使用 public const string Repair = "103"; // 維修停用:床位維修或不可使用 } public static class Room { public const string Empty = "301"; // 空房:房間所有床位皆為空 public const string Partly = "302"; // 部分入住:房間有人,但仍有空床 public const string Full = "303"; // 已滿:房間所有床位皆已入住 public const string Repair = "304"; // 維修停用:房間維修或不可使用 } public static class Guadan { public const string Booked = "401"; // 預訂成功:默認就是預訂成功狀態 public const string CheckedIn = "402"; // 已入住:已辦理入住 public const string CheckedOut = "403"; // 已退房 public const string Cancelled = "404"; // 已取消:取消後的狀態,不是取消的動作 } }