2025-04-21 14:10:27 +08:00

31 lines
714 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using MyCode.Project.Infrastructure.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.SalesSheet
{
/// <summary>
///
/// </summary>
public class PresalesSheetPageListQuery
{
/// <summary>
/// 时间范围
/// </summary>
public TimeRange Time { get; set; }
/// <summary>
/// 是否已到货1是0不是,-1全部
/// </summary>
public int IsArrival { get; set; }
/// <summary>
/// 会员姓名/手机号
/// </summary>
public string MemberInfo { get; set; }
}
}