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.
24 lines
555 B
C#
24 lines
555 B
C#
namespace DS.WMS.Core.Info.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 往来单位附加查询条件
|
|
/// </summary>
|
|
public class ClientQuery
|
|
{
|
|
/// <summary>
|
|
/// 联系方式:电话/手机/邮箱
|
|
/// </summary>
|
|
public string? ContactInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否合同到期
|
|
/// </summary>
|
|
public bool? IsContractExpired { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户标记
|
|
/// </summary>
|
|
public QueryClientInfo? ClientTag { get; set; }
|
|
}
|
|
}
|