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.

29 lines
513 B
C#

2 years ago
using Common.Entity;
2 years ago
using System;
2 years ago
namespace djy.Model.IsfDto
{
public class ISFQuery : PageEntity
{
/// <summary>
/// 提单号
/// </summary>
public string MBLNO { get; set; }
public string InFoType { get; set; }
2 years ago
/// <summary>
/// 申报状态
/// </summary>
public string ReportState { get; set; }
2 years ago
public DateTime? BDate { get; set; }
public DateTime? EDate { get; set; }
/// <summary>
/// 操作人
/// </summary>
public string UserName { get; set; }
2 years ago
}
}