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.
48 lines
1.2 KiB
48 lines
1.2 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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 增值服务数据
|
||
|
/// </summary>
|
||
|
public List<PackItemModelResponse> IncreateList { get; set; }
|
||
|
/// <summary>
|
||
|
///工序服务数据
|
||
|
/// </summary>
|
||
|
public List<PackItemModelResponse> PackList { get; set; }
|
||
|
/// <summary>
|
||
|
/// 耗材服务数据
|
||
|
/// </summary>
|
||
|
public List<PackItemModelResponse> ConsumableServiceList { get; set; }
|
||
|
}
|
||
|
|
||
|
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; }
|
||
|
}
|
||
|
|
||
|
}
|