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.MvcShipping.Models.MsOpSeaeEdiTemplate
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class SortObject
|
|
|
|
|
{
|
|
|
|
|
public string property { get; set; }
|
|
|
|
|
public string direction { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class MsOpSeaeEdiTemplateModel
|
|
|
|
|
{
|
|
|
|
|
public string gid { get; set; }
|
|
|
|
|
public string TEMPLATENAME { get; set; }
|
|
|
|
|
public string COMPANYID { get; set; }
|
|
|
|
|
public string USERID { get; set; }
|
|
|
|
|
public string TYPE { get; set; }
|
|
|
|
|
public string NAME { get; set; }
|
|
|
|
|
public string ADDRESS { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ADDRESS2 { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ADDRESS3 { get; set; }
|
|
|
|
|
public string COUNTRY { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CITY { get; set; }
|
|
|
|
|
|
|
|
|
|
public string PROVINCE { get; set; }
|
|
|
|
|
public string CODETYPE { get; set; }
|
|
|
|
|
public string CODE { get; set; }
|
|
|
|
|
|
|
|
|
|
public string TEL { get; set; }
|
|
|
|
|
|
|
|
|
|
public string POSTCODE { get; set; }
|
|
|
|
|
public string ATTN { get; set; }
|
|
|
|
|
public string CreateTime { get; set; }
|
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|