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.
|
|
|
|
using System;
|
|
|
|
|
using HcUtility.Core;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
|
|
|
{
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class LaneModel
|
|
|
|
|
{
|
|
|
|
|
#region private Fields
|
|
|
|
|
private string _GID = String.Empty;
|
|
|
|
|
private string _laneid = String.Empty;
|
|
|
|
|
private string _lane = String.Empty;
|
|
|
|
|
private string _laneen = String.Empty;
|
|
|
|
|
private string _edicode = String.Empty;
|
|
|
|
|
private string _op = String.Empty;
|
|
|
|
|
private string _doc = String.Empty;
|
|
|
|
|
private string _custservice = String.Empty;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Public Properties
|
|
|
|
|
public string GID
|
|
|
|
|
{
|
|
|
|
|
get { return _GID; }
|
|
|
|
|
set { _GID = value; }
|
|
|
|
|
}
|
|
|
|
|
public string LANEID
|
|
|
|
|
{
|
|
|
|
|
get { return _laneid; }
|
|
|
|
|
set { _laneid = value; }
|
|
|
|
|
}
|
|
|
|
|
public string LANE
|
|
|
|
|
{
|
|
|
|
|
get { return _lane; }
|
|
|
|
|
set { _lane = value; }
|
|
|
|
|
}
|
|
|
|
|
public string LANEEN
|
|
|
|
|
{
|
|
|
|
|
get { return _laneen; }
|
|
|
|
|
set { _laneen = value; }
|
|
|
|
|
}
|
|
|
|
|
public string EDICODE
|
|
|
|
|
{
|
|
|
|
|
get { return _edicode; }
|
|
|
|
|
set { _edicode = value; }
|
|
|
|
|
}
|
|
|
|
|
public string OP
|
|
|
|
|
{
|
|
|
|
|
get { return _op; }
|
|
|
|
|
set { _op = value; }
|
|
|
|
|
}
|
|
|
|
|
public string DOC
|
|
|
|
|
{
|
|
|
|
|
get { return _doc; }
|
|
|
|
|
set { _doc = value; }
|
|
|
|
|
}
|
|
|
|
|
public string CUSTSERVICE
|
|
|
|
|
{
|
|
|
|
|
get { return _custservice; }
|
|
|
|
|
set { _custservice = value; }
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|