using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Community.Model.Build { public class HouseState { public HouseState() { } /// /// 主键 /// public int Id { set; get; } /// /// 状态 /// public string Status { set; get; } } }