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.

31 lines
776 B
C#

namespace DS.WMS.Core.TaskPlat.Dtos
{
public class GetCurrentTotalStatQueryDto
{
/// <summary>
/// 查询条件
/// </summary>
public string QueryCondition { get; set; } = string.Empty;
public QueryTaskManageDto OtherQueryCondition { get; set; }
public bool IsReCalc { get; set; }
///// <summary>
///// 业务编号(提单号或委托编号)
///// </summary>
//public string BusinessNo { get; set; }
///// <summary>
///// 装货港代码
///// </summary>
//public string? PortLoadCode { get; set; }
///// <summary>
///// 卸货港代码
///// </summary>
//public string? PortDischargeCode { get; set; }
}
}