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.

32 lines
660 B
C#

using DS.Module.Core;
using SqlSugar;
namespace DS.WMS.Core.Code.Dtos;
/// <summary>
/// 运输条款信息返回
/// </summary>
public class CodeServiceSelectRes
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 运输条款-英文名称
/// </summary>
public string ServiceName { get; set; }
/// <summary>
/// 中文名称
/// </summary>
public string CnName { get; set; }
/// <summary>
/// EDI代码
/// </summary>
public string EdiCode { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Note { get; set; } = "";
}