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.

20 lines
331 B
C#

using Common.Entity;
namespace djy.Model.IsfDto
{
public class ISFQuery : PageEntity
{
/// <summary>
/// 提单号
/// </summary>
public string MBLNO { get; set; }
public string InFoType { get; set; }
/// <summary>
/// 申报状态
/// </summary>
public string ReportState { get; set; }
}
}