📄 worktime.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:08:03
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class WorkTime
{
private int workTimeId;
private string onDutyTime = String.Empty;
private string offDutyTime = String.Empty;
public WorkTime() { }
public WorkTime(int _worktimeid,String _ondutytime,String _offdutytime)
{
this.workTimeId = _worktimeid;
this.onDutyTime = _ondutytime;
this.offDutyTime = _offdutytime;
}
public int WorkTimeId
{
get { return this.workTimeId; }
set { this.workTimeId = value; }
}
public string OnDutyTime
{
get { return this.onDutyTime; }
set { this.onDutyTime = value; }
}
public string OffDutyTime
{
get { return this.offDutyTime; }
set { this.offDutyTime = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -