📄 popedom.cs
字号:
using System;
using System.Collections;
namespace Com.SMS.Entity
{
#region Popedom
/// <summary>
/// Popedom object for NHibernate mapped table 'Popedom'.
/// </summary>
public class Popedom
{
#region Member Variables
protected int _pdId;
protected string _pdName;
protected string _pdPath;
#endregion
#region Constructors
public Popedom() { }
public Popedom( string pdName, string pdPath )
{
this._pdName = pdName;
this._pdPath = pdPath;
}
#endregion
#region Public Properties
public int PdId
{
get {return _pdId;}
set {_pdId = value;}
}
public string PdName
{
get { return _pdName; }
set
{
if ( value != null && value.Length > 100)
throw new ArgumentOutOfRangeException("Invalid value for PdName", value, value.ToString());
_pdName = value;
}
}
public string PdPath
{
get { return _pdPath; }
set
{
if ( value != null && value.Length > 500)
throw new ArgumentOutOfRangeException("Invalid value for PdPath", value, value.ToString());
_pdPath = value;
}
}
#endregion
}
#endregion
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -