35 lines
721 B
C#
35 lines
721 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Request.ServiceOrderComment
|
|
{
|
|
public class GetServiceCommentDetailQuest
|
|
{
|
|
/// <summary>
|
|
/// 店员ID
|
|
/// </summary>
|
|
public Guid? ClerkId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店铺ID
|
|
/// </summary>
|
|
public Guid ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店员类型,0 店员 1 加盟商
|
|
/// </summary>
|
|
public int ClerkType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单ID
|
|
/// </summary>
|
|
public Guid? OrderId { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|