using System; using System.Collections.Generic; namespace TradeModel { public class JC_ExpressCode { public Int32? Id{ get; set; } public Int32? ExpressId{ get; set; } /// /// 快递单号 /// public String PostCode{ get; set; } /// /// 0未使用1已使用 /// public Int32? IsUse{ get; set; } public Int32? CompanyId{ get; set; } public DateTime? InDate { get; set; } public DateTime? UpdateDate { get; set; } public string ExpressName { get; set; } public String UseState { get; set; } } }