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.
44 lines
994 B
C#
44 lines
994 B
C#
using DS.Module.Core;
|
|
|
|
namespace DS.WMS.Core.Code.Dtos;
|
|
|
|
/// <summary>
|
|
/// 航线信息下拉选择返回
|
|
/// </summary>
|
|
public class CodeLanesSelectRes
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 航线代码
|
|
/// </summary>
|
|
public string LaneCode { get; set; } = "";
|
|
/// <summary>
|
|
/// 航线中文名称
|
|
/// </summary>
|
|
public string LaneName { get; set; }= "";
|
|
/// <summary>
|
|
/// 航线英文名称
|
|
/// </summary>
|
|
public string LaneEnName { get; set; }= "";
|
|
/// <summary>
|
|
/// 默认操作员
|
|
/// </summary>
|
|
public long Operator { get; set; }= 0;
|
|
/// <summary>
|
|
/// 默认单证
|
|
/// </summary>
|
|
public long VouchingClerk { get; set; }= 0;
|
|
|
|
/// <summary>
|
|
/// EDI代码
|
|
/// </summary>
|
|
public string EdiCode { get; set; }
|
|
/// <summary>
|
|
/// 默认客服
|
|
/// </summary>
|
|
public long CustomerService { get; set; } = 0;
|
|
|
|
} |