schedule.cs

来自「will let you know the result once they r」· CS 代码 · 共 113 行

CS
113
字号
//============================================================
// Producnt name:		BoBoARTS.CodeMad
// Version: 			1.0
// Coded by:			Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 	2008-7-16 10:23:10
//============================================================

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

namespace MyOffice.Models
{

    [Serializable()]
    public class Schedule
    {

        private int scheduleId;
        private MeetingInfo meeting;
        private string title = String.Empty;
        private string address = String.Empty;
        private DateTime beginTime;
        private DateTime endTime;
        private string schContent = String.Empty;
        private string createUser = String.Empty;
        private DateTime createTime;
        private int ifPrivate;



        public Schedule() { }




        public int ScheduleId
        {
            get { return this.scheduleId; }
            set { this.scheduleId = value; }
        }




        public MeetingInfo Meeting
        {
            get { return this.meeting; }
            set { this.meeting = value; }
        }




        public string Title
        {
            get { return this.title; }
            set { this.title = value; }
        }


        public string Address
        {
            get { return this.address; }
            set { this.address = value; }
        }


        public DateTime BeginTime
        {
            get { return this.beginTime; }
            set { this.beginTime = value; }
        }


        public DateTime EndTime
        {
            get { return this.endTime; }
            set { this.endTime = value; }
        }


        public string SchContent
        {
            get { return this.schContent; }
            set { this.schContent = value; }
        }


        public string CreateUser
        {
            get { return this.createUser; }
            set { this.createUser = value; }
        }


        public DateTime CreateTime
        {
            get { return this.createTime; }
            set { this.createTime = value; }
        }


        public int IfPrivate
        {
            get { return this.ifPrivate; }
            set { this.ifPrivate = value; }
        }

    }
}

⌨️ 快捷键说明

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