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.
34 lines
829 B
34 lines
829 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Client.Models.APIModel
|
|
{
|
|
public class SetPackDetailV2Response
|
|
{
|
|
/// <summary>
|
|
/// 套餐任务量
|
|
/// </summary>
|
|
public int ProcessTaskCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打包完成时间(超时时间)
|
|
/// </summary>
|
|
public DateTime? PackCompletionOverTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 包装收益
|
|
/// </summary>
|
|
public decimal PackerFees { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工序套餐名称
|
|
/// </summary>
|
|
public string ProcessComboName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 耗材名称列表
|
|
/// </summary>
|
|
public List<string> ConsumableNameList { get; set; }
|
|
}
|
|
}
|
|
|