📄 manualsign.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:05:53
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class ManualSign
{
private int signId;
private UserInfo user;
private DateTime signTime;
private string signDesc = String.Empty;
private int signTag;
public ManualSign() { }
public ManualSign(int _signid,UserInfo _user,DateTime _signtime,String _signdesc,int _signtag)
{
this.signId = _signid;
this.user = _user;
this.signTime = _signtime;
this.signDesc = _signdesc;
this.signTag = _signtag;
}
public int SignId
{
get { return this.signId; }
set { this.signId = value; }
}
public UserInfo User
{
get { return this.user; }
set { this.user = value; }
}
public DateTime SignTime
{
get { return this.signTime; }
set { this.signTime = value; }
}
public string SignDesc
{
get { return this.signDesc; }
set { this.signDesc = value; }
}
public int SignTag
{
get { return this.signTag; }
set { this.signTag = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -