78 lines
1.9 KiB
C#
78 lines
1.9 KiB
C#
|
using MyCode.Project.Domain.Message.Response.ServiceOrder;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Act.ServiceOrderComment
|
|||
|
{
|
|||
|
public class SaveServiceCommentAct
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 订单ID
|
|||
|
/// </summary>
|
|||
|
public Guid? Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:服务的评论
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public string Comment { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:手法星级 1-5星
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public int? ShouFa { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:态度星级 1-5星
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public int? TaiDu { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:效果星级 1-5星
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public int? XiaoGuo { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:卫生星级 1-5星
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public int? WeiSheng { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:环境星级 1-5星
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public int? HuanJing { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class AddServiceQtyAndBalance
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 要增加的服务次数
|
|||
|
/// </summary>
|
|||
|
public List<ServiceInvInfo> ServiceInvs { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 要增加的会员余额
|
|||
|
/// </summary>
|
|||
|
public decimal? Balance { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取会员详情资料的ID
|
|||
|
/// </summary>
|
|||
|
public Guid Id { get; set; }
|
|||
|
}
|
|||
|
}
|