2025-04-24 18:31:27 +08:00

41 lines
1008 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 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 SalesSheetPageListQuery
{
/// <summary>
/// 开始时间
/// </summary>
public DateTime? Begin { get; set; }
/// <summary>
/// 截止时间
/// </summary>
public DateTime? End { get; set; }
/// <summary>
/// 会员姓名/手机号
/// </summary>
public string MemberInfo { get; set; }
/// <summary>
/// 根据时间排序。-1默认排序1根据时间正序2根据时间倒序
/// </summary>
public int? OrderByTime { get; set; }
/// <summary>
/// 根据状态排序。-1默认排序1根据状态正序2根据状态倒序
/// </summary>
public int? OrderByFlag { get; set; }
}
}