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.
72 lines
1.5 KiB
C#
72 lines
1.5 KiB
C#
namespace DS.WMS.Core.System.Dtos;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class InfoClientViewModel
|
|
{
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:newid()
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string GID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:客户代码
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string CODENAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:客户简称
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string SHORTNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:客户中文名称或描述信息
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string DESCRIPTION { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:客户英文简称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:客户英文全称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string EnFullName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:客户状态
|
|
/// Default:0
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? STATUS { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:通讯地址
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string ADDR { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:负责人
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string CHIEF { get; set; }
|
|
|
|
} |