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 System.Data;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using HcUtility.Core;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.MvcShipping.Models.EdiLog
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class EDILOG
|
|
|
|
|
{
|
|
|
|
|
#region private Fields
|
|
|
|
|
|
|
|
|
|
private string _MFNO = String.Empty;
|
|
|
|
|
private string _BSNO = String.Empty;
|
|
|
|
|
private string _EDITYPE = String.Empty;
|
|
|
|
|
private string _FILETYPE = String.Empty;
|
|
|
|
|
private string _CARRIER = String.Empty;
|
|
|
|
|
private string _EDISERVICE = String.Empty;
|
|
|
|
|
private string _SENDER = String.Empty;
|
|
|
|
|
private string _SENDDATE = String.Empty;
|
|
|
|
|
private string _EDIFILE = String.Empty;
|
|
|
|
|
private string _EDIFILEPATH = String.Empty;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Public Properties
|
|
|
|
|
|
|
|
|
|
public string MFNO
|
|
|
|
|
{
|
|
|
|
|
get { return _MFNO; }
|
|
|
|
|
set { _MFNO = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string BSNO
|
|
|
|
|
{
|
|
|
|
|
get { return _BSNO; }
|
|
|
|
|
set { _BSNO = value; }
|
|
|
|
|
}
|
|
|
|
|
public string EDITYPE
|
|
|
|
|
{
|
|
|
|
|
get { return _EDITYPE; }
|
|
|
|
|
set { _EDITYPE = value; }
|
|
|
|
|
}
|
|
|
|
|
public string FILETYPE
|
|
|
|
|
{
|
|
|
|
|
get { return _FILETYPE; }
|
|
|
|
|
set { _FILETYPE = value; }
|
|
|
|
|
}
|
|
|
|
|
public string CARRIER
|
|
|
|
|
{
|
|
|
|
|
get { return _CARRIER; }
|
|
|
|
|
set { _CARRIER = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string EDISERVICE
|
|
|
|
|
{
|
|
|
|
|
get { return _EDISERVICE; }
|
|
|
|
|
set { _EDISERVICE = value; }
|
|
|
|
|
}
|
|
|
|
|
public string SENDER
|
|
|
|
|
{
|
|
|
|
|
get { return _SENDER; }
|
|
|
|
|
set { _SENDER = value; }
|
|
|
|
|
}
|
|
|
|
|
public string SENDDATE
|
|
|
|
|
{
|
|
|
|
|
get { return _SENDDATE; }
|
|
|
|
|
set { _SENDDATE = value; }
|
|
|
|
|
}
|
|
|
|
|
public string EDIFILE
|
|
|
|
|
{
|
|
|
|
|
get { return _EDIFILE; }
|
|
|
|
|
set { _EDIFILE = value; }
|
|
|
|
|
}
|
|
|
|
|
public string EDIFILEPATH
|
|
|
|
|
{
|
|
|
|
|
get { return _EDIFILEPATH; }
|
|
|
|
|
set { _EDIFILEPATH = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|