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.
55 lines
1.1 KiB
C#
55 lines
1.1 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class CodeFrtModel
|
|
{
|
|
#region
|
|
private string _gid = "";
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
public string FEID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
|
|
private string _frt = "";
|
|
/// <summary>
|
|
/// CODENAME
|
|
/// </summary>
|
|
public string FRT
|
|
{
|
|
get { return _frt; }
|
|
set { _frt = value; }
|
|
}
|
|
|
|
private string _frtcname = "";
|
|
/// <summary>
|
|
/// NAME
|
|
/// </summary>
|
|
public string FRTCNAME
|
|
{
|
|
get { return _frtcname; }
|
|
set { _frtcname = value; }
|
|
}
|
|
|
|
|
|
|
|
private string _editcode = "";
|
|
/// <summary>
|
|
/// FINANCESOFTCODE
|
|
/// </summary>
|
|
public string EDICODE
|
|
{
|
|
get { return _editcode; }
|
|
set { _editcode = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|