步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.4 KiB

2 years ago
using BBWY.Client.Models.PackTask;
using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.APIModel.Response.PackTask
{
public class PackServiceResponse
{
2 years ago
public decimal Discount { get; set; }
2 years ago
/// <summary>
/// 增值服务数据
/// </summary>
public List<PackItemModelResponse> IncreateList { get; set; }
/// <summary>
///工序服务数据
/// </summary>
public List<PackItemModelResponse> PackList { get; set; }
/// <summary>
/// 耗材服务数据
/// </summary>
public List<PackItemModelResponse> ConsumableServiceList { get; set; }
}
2 years ago
public class PackServiceDTO
{
2 years ago
public long Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
public ServiceType ServiceType { get; set; }
2 years ago
}
2 years ago
public class PackItemModelResponse
{
public string ItemName { get; set; }
/// <summary>
/// Member.userId
/// </summary>
public string SelectUserId { get; set; }
/// <summary>
/// 选中的服务Id
/// </summary>
public long SelectId { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string MemberName { get; set; }
/// <summary>
/// 数量
/// </summary>
public int ItemCount { get; set; }
}
}