Asp.netC#

MVC模型(Model)示例

字号+ 作者:hanyufeng 来源: 2015-09-18 23:33:18 我要评论( ) 阅读:

MVC模型(Model)示例...

业务为主的用户模式

public class UserModel
{
    public int UserID { get; set; }                 //用户编号
    public string UserName { get; set; }            //用户名
    public string Password { get; set; }            //密码
    public int Sex { get; set; }                    //性别,0男,1女
    public int Age { get; set; }                    //年龄
    public int Political { get; set; }              //政治面貌
    public int Height { get; set; }                 //身高
    public int Weight { get; set; }                 //体重
    public string Graduated { get; set; }           //毕业院校
    public string Professional { get; set; }        //专业
    public DateTime GraduatedDate { get; set; }         //毕业日期
    public string Address { get; set; }             //现住地址
    public string Phone { get; set; }               //联系电话
    public string ImagePath { get; set; }           //头相地址
    public string Other { get; set; }               //其他描述
}

页面为主的用户登陆模型

public class LoginModel
{
    public string UserName { get; set; }            //用户名
    public string Password { get; set; }            //密码
}

页面为主的用户注册模式

public class RegeditModel
{
    public string UserName { get; set; }            //用户名
    public string Password { get; set; }            //密码
    public int Sex { get; set; }                    //性别
    public int Age { get; set; }                    //年龄
}

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • Windows Server 2003 + IIS 6.0 设置.Net MVC 4

    Windows Server 2003 ...

  • VS 2010 MVC4 项目发布方法

    VS 2010 MVC4 项目发布方法

  • 异常信息:检测到有潜在危险的 Request.Form 值

    异常信息:检测到有潜在...

  • MVC Controller返回View(Model)时须清除ModelState

    MVC Controller返回View...

  • Win 2008 R2 MVC 站点运行错误及解决方法

    Win 2008 R2 MVC 站...