初始化
This commit is contained in:
28
Face.Web/Areas/App/Models/RoomStatus.cs
Normal file
28
Face.Web/Areas/App/Models/RoomStatus.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace Face.Web.Areas.App.Models
|
||||
{
|
||||
enum Statiss
|
||||
{
|
||||
/// <summary>
|
||||
/// 出租
|
||||
/// </summary>
|
||||
lease,
|
||||
/// <summary>
|
||||
/// 待租
|
||||
/// </summary>
|
||||
forRent,
|
||||
/// <summary>
|
||||
/// 退房
|
||||
/// </summary>
|
||||
checkout,
|
||||
/// <summary>
|
||||
/// 空房
|
||||
/// </summary>
|
||||
vacantroom
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user