333
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user