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

57 lines
1.4 KiB
C#
Raw Permalink 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.User
{
public class MemberOrderRequst
{
/// <summary>
/// 店铺ID:详细档案接口中返回的店铺ID
/// </summary>
public Guid ShopID { get; set; }
/// <summary>
/// 会员ID(消费者端,该参数可不传)
/// </summary>
public Guid MemberID { get; set; }
/// <summary>
/// 消费类型 -1:全部 0销售 1退换货 20预售 30充值
/// </summary>
public int SalesType { get; set; }
/// <summary>
/// 时间范围搜索
/// </summary>
public TimeRange EditTime { get; set; }
}
public class OrderRequst
{
/// <summary>
/// 店铺ID
/// </summary>
public Guid? ShopID { get; set; }
/// <summary>
/// 时间范围搜索
/// </summary>
public TimeRange EditTime { get; set; }
/// <summary>
/// 搜索关键字
/// </summary>
public string KeyWord { get; set; }
/// <summary>
/// 消费类型 -1:全部 0销售 1退换货 20预售 30充值 40:服务
/// </summary>
public int SalesType { get; set; }
}
}