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.
29 lines
570 B
C#
29 lines
570 B
C#
using DS.Module.Core;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Code.Dtos;
|
|
|
|
/// <summary>
|
|
/// 港口信息下拉返回
|
|
/// </summary>
|
|
public class CodePortSelectRes
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 港口英文名称
|
|
/// </summary>
|
|
public string PortName { get; set; } = "";
|
|
/// <summary>
|
|
/// 港口中文名称
|
|
/// </summary>
|
|
public string CnName { get; set; }= "";
|
|
|
|
/// <summary>
|
|
/// EDI代码
|
|
/// </summary>
|
|
public string EdiCode { get; set; }
|
|
|
|
} |