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.
30 lines
543 B
C#
30 lines
543 B
C#
namespace DS.WMS.Core.Info.Dtos;
|
|
|
|
/// <summary>
|
|
/// 客户下拉实体
|
|
/// </summary>
|
|
public class ClientSelectRes
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:客户代码
|
|
/// </summary>
|
|
public string CodeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:客户简称
|
|
/// </summary>
|
|
public string ShortName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:英文简称
|
|
/// </summary>
|
|
public string EnShortName { get; set; }
|
|
|
|
} |