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.
27 lines
673 B
C#
27 lines
673 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TradeModel
|
|
{
|
|
public class JC_ExpressCode
|
|
{
|
|
public Int32? Id{ get; set; }
|
|
public Int32? ExpressId{ get; set; }
|
|
/// <summary>
|
|
/// 快递单号
|
|
/// </summary>
|
|
public String PostCode{ get; set; }
|
|
/// <summary>
|
|
/// 0未使用1已使用
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|
|
|