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.
31 lines
641 B
C#
31 lines
641 B
C#
using DS.Module.Core;
|
|
|
|
namespace DS.WMS.Core.Code.Dtos;
|
|
|
|
/// <summary>
|
|
/// 付费方式信息返回
|
|
/// </summary>
|
|
public class CodeFrtSelectRes
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 付费方式-英文名称
|
|
/// </summary>
|
|
public string FrtName { get; set; }
|
|
/// <summary>
|
|
/// 中文名称
|
|
/// </summary>
|
|
public string CnName { get; set; }
|
|
|
|
/// <summary>
|
|
/// EDI代码
|
|
/// </summary>
|
|
public string EdiCode { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Note { get; set; } = "";
|
|
} |