using System; using System.Collections.Generic; namespace TradeModel { public class JC_Company { public Int32? CompanyID{ get; set; } public String CompanyCode{ get; set; } public Int32? ParentCompanyId{ get; set; } public String CompanyName{ get; set; } public String SimpleName{ get; set; } public Int32? CompanyType{ get; set; } public String Address{ get; set; } public String Phone{ get; set; } public String Fax{ get; set; } public String Email{ get; set; } public String HomePage{ get; set; } public String ChargeName{ get; set; } public String Shen{ get; set; } public String Shi{ get; set; } public String Qu{ get; set; } public String CompanyDesc{ get; set; } public Int32? State{ get; set; } public String province { get; set; } public String city { get; set; } public String county { get; set; } public String street { get; set; } public String PostCode { get; set; } public String CompanyEnglishName { get; set; } public String ChargeEnglishName { get; set; } public String EnglishAddress { get; set; } /// /// 快递重量范围验证比例 /// public Int32? WeightRate { get; set; } /// /// 人工费 /// public Decimal? PersonFee { get; set; } public String UserName { get; set; } public String Password { get; set; } public String ApiKey { get; set; } public Decimal? NowFee { get; set; } public Int32? FeeId { get; set; } } public class JC_CompanyFee { /// /// Id /// public Int32? Id { get; set; } public Int32? CompanyId { get; set; } /// /// InDate /// public DateTime? InDate { get; set; } /// /// InName /// public String InName { get; set; } /// /// InFee /// public Decimal? InFee { get; set; } /// /// InUSDFee /// public Decimal? InUSDFee { get; set; } } }