zoukankan      html  css  js  c++  java
  • mvc.net分页查询案例——实体层(HouseModel.cs)

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.ComponentModel;
    
    namespace HouseSys.Models
    {
        [Serializable]
        public class HouseModel
        {
            [DisplayName("房屋编号")]
            public int HouseId { get; set; }
            [DisplayName("房屋标题")]
            public string Title { get; set; }
            [DisplayName("房屋类型")]
            public HouseTypeModel Type { get; set; }
            [DisplayName("房屋面积")]
            public double Floorage { get; set; }
            [DisplayName("房屋价格")]
            public double Price { get; set; }
            [DisplayName("街道")]
            public StreetModel Street { get; set; }
            [DisplayName("联系方式")]
            public string Contract { get; set; }
            [DisplayName("描述")]
            public string Description { get; set; }
            [DisplayName("联系人")]
            public UserModel PublishUser { get; set; }
            [DisplayName("发布时间")]
            public DateTime PublishTime { get; set; }
        }
    }

  • 相关阅读:
    P1486 [NOI2004]郁闷的出纳员
    P1966 火柴排队
    P2627 修剪草坪
    P1621 集合
    P1025 数的划分
    中国剩余定理
    P2043 质因子分解
    P1075 质因数分解
    C#之引用类型参数
    C#之方法的定义及调用学习案例
  • 原文地址:https://www.cnblogs.com/a1111/p/7459641.html
Copyright © 2011-2022 走看看