点点细雨的项目日记(四) 权…

点点细雨的原创博文!供各位在编程之路的同学们参考~
本人博文允许转载,但请在文章显著位置注明转载出处以及原文链接,谢谢合作!

在一开始的项目需求中,我提到过关于权限的重要性,所以,首先重点做了权限的部分。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Model
{
    public class popedom
    {
        private int pop_id;

        public int Pop_id
        {
            get { return pop_id; }
            set { pop_id = value; }
        }
        private string pop_name;

        public string Pop_name
        {
            get { return pop_name; }
            set { pop_name = value; }
        }
        private int user_id;

        public int User_id
        {
            get { return user_id; }
            set { user_id = value; }
        }
    }
}
用户登录 -> 查询权限表 -> 在表示层展现出用户所具有的功能

我的更多文章:
  • 点点细雨的项目日记(三) 三层架构(2012-12-26 22:31:28)
  • 点点细雨的项目日记(二) 数据库的搭建(2012-12-25 22:38:22)
  • 点点细雨的项目日记(一) 需求分析(2012-12-25 21:42:49)

你可能感兴趣的:(点点细雨的项目日记(四) 权…)