31 lines
714 B
C#
31 lines
714 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|