📄 schedule.cs
字号:
//============================================================
// Producnt name: BoBoARTS.CodeMad
// Version: 1.0
// Coded by: Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 2008-9-18 16:07:19
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class Schedule
{
private int scheduleId;
private UserInfo createUser;
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 DateTime createTime;
private int ifPrivate;
public Schedule() {}
public Schedule(int _scheduleid, UserInfo _createuser, MeetingInfo _meeting, String _title, String _address, DateTime _begintime, DateTime _endtime, String _schcontent, DateTime _createtime, int _ifprivate)
{
this.scheduleId = _scheduleid;
this.createUser = _createuser;
this.meeting = _meeting;
this.title = _title;
this.address = _address;
this.beginTime = _begintime;
this.endTime = _endtime;
this.schContent = _schcontent;
this.createTime = _createtime;
this.ifPrivate = _ifprivate;
}
public int ScheduleId
{
get { return this.scheduleId; }
set { this.scheduleId = value; }
}
public UserInfo CreateUser
{
get { return this.createUser; }
set { this.createUser = 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 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -