You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.2 KiB
C#
95 lines
2.2 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class CtnDispModel
|
|
{
|
|
#region private Fields
|
|
|
|
private string _id = String.Empty;
|
|
private string _cnt1 = String.Empty;
|
|
private string _cnt2 = String.Empty;
|
|
private string _cnt3 = String.Empty;
|
|
private string _cnt4 = String.Empty;
|
|
private string _cnt5 = String.Empty;
|
|
private string _cnt6 = String.Empty;
|
|
private string _cnt7 = String.Empty;
|
|
private string _cnt8 = String.Empty;
|
|
private string _cnt9 = String.Empty;
|
|
private string _cnt10 = String.Empty;
|
|
private string _corpid = String.Empty;
|
|
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
|
|
public string ID
|
|
{
|
|
get { return _id; }
|
|
set { _id = value; }
|
|
}
|
|
public string CNT1
|
|
{
|
|
get { return _cnt1; }
|
|
set { _cnt1 = value; }
|
|
}
|
|
public string CNT2
|
|
{
|
|
get { return _cnt2; }
|
|
set { _cnt2 = value; }
|
|
}
|
|
public string CNT3
|
|
{
|
|
get { return _cnt3; }
|
|
set { _cnt3 = value; }
|
|
}
|
|
public string CNT4
|
|
{
|
|
get { return _cnt4; }
|
|
set { _cnt4 = value; }
|
|
}
|
|
public string CNT5
|
|
{
|
|
get { return _cnt5; }
|
|
set { _cnt5 = value; }
|
|
}
|
|
public string CNT6
|
|
{
|
|
get { return _cnt6; }
|
|
set { _cnt6 = value; }
|
|
}
|
|
public string CNT7
|
|
{
|
|
get { return _cnt7; }
|
|
set { _cnt7 = value; }
|
|
}
|
|
public string CNT8
|
|
{
|
|
get { return _cnt8; }
|
|
set { _cnt8 = value; }
|
|
}
|
|
public string CNT9
|
|
{
|
|
get { return _cnt9; }
|
|
set { _cnt9 = value; }
|
|
}
|
|
public string CNT10
|
|
{
|
|
get { return _cnt10; }
|
|
set { _cnt10 = value; }
|
|
}
|
|
public string CORPID
|
|
{
|
|
get { return _corpid; }
|
|
set { _corpid = value; }
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|