bulletindata.cs

来自「入门级asp.netC#网站三层系统开发」· CS 代码 · 共 48 行

CS
48
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace Common.Entities
{
    public class BulletinData
    {
        private int bulletinId;
        private string bulletinTitle;
        private string bulletinBody;
        private string memberName;
        private DateTime addDate;       

       

        public DateTime AddDate
        {
            get { return addDate; }
            set { addDate = value; }
        }

        public string MemberName
        {
            get { return memberName; }
            set { memberName = value; }
        }

        public string BulletinBody
        {
            get { return bulletinBody; }
            set { bulletinBody = value; }
        }

        public string BulletinTitle
        {
            get { return bulletinTitle; }
            set { bulletinTitle = value; }
        }

        public int BulletinId
        {
            get { return bulletinId; }
            set { bulletinId = value; }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?