94 lines
1.8 KiB
C#
94 lines
1.8 KiB
C#
|
|
|||
|
using Ease.Core.Model;
|
|||
|
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
#region WebAPPFormParamDetails
|
|||
|
public class WebAPPFormParamDetails : BasicBaseObject
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public WebAPPFormParamDetails()
|
|||
|
{
|
|||
|
_webAPPParamID = (0);
|
|||
|
_paramID = 0;
|
|||
|
_svalue = string.Empty;
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
#region WebAPPParamID : ID
|
|||
|
private int _webAPPParamID;
|
|||
|
public int WebAPPParamID
|
|||
|
{
|
|||
|
get { return _webAPPParamID; }
|
|||
|
set
|
|||
|
{
|
|||
|
|
|||
|
_webAPPParamID = value;
|
|||
|
}
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region ParamID : int
|
|||
|
|
|||
|
private int _paramID;
|
|||
|
public int ParamID
|
|||
|
{
|
|||
|
get { return _paramID; }
|
|||
|
set
|
|||
|
{
|
|||
|
|
|||
|
_paramID = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Value : object
|
|||
|
|
|||
|
private object _svalue;
|
|||
|
public object Value
|
|||
|
{
|
|||
|
get { return _svalue; }
|
|||
|
set
|
|||
|
{
|
|||
|
_svalue = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region DataType : EnumColumnDataType
|
|||
|
|
|||
|
private EnumColumnDataType _dataType;
|
|||
|
public EnumColumnDataType DataType
|
|||
|
{
|
|||
|
get { return _dataType; }
|
|||
|
set
|
|||
|
{
|
|||
|
|
|||
|
_dataType = value;
|
|||
|
}
|
|||
|
}
|
|||
|
#endregion
|
|||
|
#endregion
|
|||
|
|
|||
|
//#region Service Factory IWebAPPFormParamService : IWebAPPFormParamService
|
|||
|
|
|||
|
//internal static IWebAPPFormParamService Service
|
|||
|
//{
|
|||
|
// get { return Services.Factory.CreateService<IWebAPPFormParamService>(typeof(IWebAPPFormParamService)); }
|
|||
|
//}
|
|||
|
|
|||
|
//#endregion
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|