28 lines
486 B
C#
28 lines
486 B
C#
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
|
|
}
|
|
|
|
} |