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.
DS7/DSWeb/Areas/MvcShipping/Models/MsBaseInfo/CompanyDef.cs

81 lines
1.7 KiB
C#

2 years ago
using System;
using System.Data;
using System.Collections;
using System.Collections.Generic;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.MvcShipping.Models.CompanyDef
{
[JsonObject]
public class CompanyDef
{
#region private Fields
private string _GID= String.Empty;
private string _CORPID = String.Empty;
private string _PORTLOADID = String.Empty;
private string _PORTLOAD = String.Empty;
private string _BLFRT = String.Empty;
private string _AFRCARRIERID = String.Empty;
private string _AFRAGENTID = String.Empty;
private string _AFRETDTIME = String.Empty;
#endregion
#region Public Properties
public string GID
{
get { return _GID; }
set { _GID = value; }
}
public string CORPID
{
get { return _CORPID; }
set { _CORPID = value; }
}
public string PORTLOADID
{
get { return _PORTLOADID; }
set { _PORTLOADID = value; }
}
public string PORTLOAD
{
get { return _PORTLOAD; }
set { _PORTLOAD = value; }
}
public string BLFRT
{
get { return _BLFRT; }
set { _BLFRT = value; }
}
public string AFRCARRIERID
{
get { return _AFRCARRIERID; }
set { _AFRCARRIERID = value; }
}
public string AFRAGENTID
{
get { return _AFRAGENTID; }
set { _AFRAGENTID = value; }
}
public string AFRETDTIME
{
get { return _AFRETDTIME; }
set { _AFRETDTIME = value; }
}
#endregion
}
}