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.
53 lines
1.3 KiB
53 lines
1.3 KiB
using BBWY.Client.Models.APIModel.Request;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Client.Models
|
|
{
|
|
public class GetPackDetailResponse
|
|
{
|
|
///// <summary>
|
|
///// 打包折扣
|
|
///// </summary>
|
|
//public decimal PackDiscount { get; set; }
|
|
|
|
public string ProcessTypeName { get; set; }
|
|
|
|
public string ProcessComboName { get; set; }
|
|
|
|
public long ProcessComboId { get; set; }
|
|
|
|
public int ProcessTaskCount { get; set; }
|
|
|
|
public decimal? DirectionalSingleFees { get; set; }
|
|
|
|
public List<PackUserResponse> PackUserList { get; set; }
|
|
|
|
public List<TaskConsumableResponse> ConsumableList { get; set; }
|
|
|
|
public decimal? ConsumableFees { get; set; }
|
|
public FeesMode? FeesMode { get; set; }
|
|
public decimal? DiscountFactor { get; set; }
|
|
public string SuggestPackUserName { get; set; }
|
|
|
|
public string ProductResistantName { get; set; }
|
|
/// <summary>
|
|
/// 打包工序类型(0=推荐工序,1=自定义工序)
|
|
/// </summary>
|
|
public PackProcessType PackProcessType { get; set; }
|
|
}
|
|
|
|
public class PackUserResponse : PackUserModelRequest
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public class TaskConsumableResponse : ConsumableRequest
|
|
{
|
|
|
|
|
|
}
|
|
}
|
|
|