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.
92 lines
1.9 KiB
C#
92 lines
1.9 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.CodeAll
|
|
{
|
|
|
|
[JsonObject]
|
|
public class Code_lanesmb : ModelObjectBillHead
|
|
{
|
|
#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
|
|
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string GID
|
|
{
|
|
get { return _GID; }
|
|
set { _GID = value; }
|
|
}
|
|
[ModelDB]
|
|
public string LANEID
|
|
{
|
|
get { return _LANEID; }
|
|
set { _LANEID = value; }
|
|
}
|
|
[ModelDB]
|
|
public string LANE
|
|
{
|
|
get { return _LANE; }
|
|
set { _LANE = value; }
|
|
}
|
|
[ModelDB]
|
|
public string LANEEN
|
|
{
|
|
get { return _LANEEN; }
|
|
set { _LANEEN = value; }
|
|
}
|
|
[ModelDB]
|
|
public string EDICODE
|
|
{
|
|
get { return _EDICODE; }
|
|
set { _EDICODE = value; }
|
|
}
|
|
[ModelDB]
|
|
public string OP
|
|
{
|
|
get { return _OP; }
|
|
set { _OP = value; }
|
|
}
|
|
[ModelDB]
|
|
public string DOC
|
|
{
|
|
get { return _DOC; }
|
|
set { _DOC = value; }
|
|
}
|
|
[ModelDB]
|
|
public string CUSTSERVICE
|
|
{
|
|
get { return _CUSTSERVICE; }
|
|
set { _CUSTSERVICE = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
public Code_lanesmb ( )
|
|
{
|
|
TableName = "Code_lanes";
|
|
}
|
|
}
|
|
|
|
#region 参照部分
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
}
|