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