You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.8 KiB
C#
73 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Service
|
|
{
|
|
public class DrawModifyBCConfig
|
|
{
|
|
/// <summary>
|
|
/// 擦除枚举
|
|
/// </summary>
|
|
public DrawModifyBCConfigTypeEnum[] drawTypeArg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原箱数量
|
|
/// </summary>
|
|
public Nullable<int> origCtnNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改箱数量
|
|
/// </summary>
|
|
public Nullable<int> newCtnNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱类型
|
|
/// </summary>
|
|
public string ctnAll { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原提单号
|
|
/// </summary>
|
|
public string origBillNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 新提单号
|
|
/// </summary>
|
|
public string newBillNo { get; set; }
|
|
}
|
|
|
|
public enum DrawModifyBCConfigTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// 标准
|
|
/// </summary>
|
|
[Description("标准")]
|
|
Standard,
|
|
/// <summary>
|
|
/// 擦除更多(展鸿要求)
|
|
/// </summary>
|
|
[Description("擦除更多")]
|
|
EraseMore,
|
|
/// <summary>
|
|
/// 手工指定截单时间
|
|
/// </summary>
|
|
[Description("手工指定截单时间")]
|
|
DrawManualSIDate,
|
|
/// <summary>
|
|
/// 分票修改(康乾,主要考虑拆票时箱数量按照拆票显示)
|
|
/// </summary>
|
|
[Description("分票修改")]
|
|
SplitBC,
|
|
/// <summary>
|
|
/// 改提单号为分票号
|
|
/// </summary>
|
|
[Description("改提单号为分票号")]
|
|
ChangeToSplitBillNo,
|
|
|
|
}
|
|
}
|