using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Face.Web.Areas.App.Models { enum Statiss { /// /// 出租 /// lease, /// /// 待租 /// forRent, /// /// 退房 /// checkout, /// /// 空房 /// vacantroom } }