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