using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.SaleBase.model { /// /// 数据库表SLM_BASE_CUSTOMER所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-DG6B81Q 时间:2015-11-09 /// public class SlmBaseCustomerEntity { /// /// 客户编码 /// private string customerNo = ""; /// /// 客户名称 /// private string customerNm = ""; /// /// 行政片区 /// private string bigarea = ""; /// /// 省市/区域 /// private string regionNo = ""; /// /// 用户组 /// private string userGrp = ""; /// /// 市场系统(1006) /// private string marketSys = ""; /// /// 简称 /// private string abrvition = ""; /// /// 机构代码 /// private string org = ""; /// /// 拼音助记 /// private string py = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 客户编码_老系统 /// private string customerNoOld = ""; private string bigareadesc = ""; private string regionNm = ""; /// /// 行政片区 /// [Description("行政片区")] public string Bigareadesc { get { return bigareadesc; } set { bigareadesc = value; } } /// /// 客户编码 /// [Description("省市/区域")] public string RegionNm { get { return regionNm; } set { regionNm = value; } } /// /// 客户编码 /// [Description("客户编码")] [Nullable(false)] [DataLength(10)] public string CustomerNo { get { return customerNo; } set { customerNo = value; } } /// /// 客户名称 /// [Description("客户名称")] [Nullable(false)] [DataLength(100)] public string CustomerNm { get { return customerNm; } set { customerNm = value; } } /// /// 行政片区 /// [Description("行政片区")] [Nullable(true)] [DataLength(20)] public string Bigarea { get { return bigarea; } set { bigarea = value; } } /// /// 省市/区域 /// [Description("省市/区域")] [Nullable(false)] [DataLength(40)] public string RegionNo { get { return regionNo; } set { regionNo = value; } } /// /// 用户组 /// [Description("用户组")] [Nullable(true)] [DataLength(40)] public string UserGrp { get { return userGrp; } set { userGrp = value; } } /// /// 市场系统(1006) /// [Description("市场系统")] [Nullable(true)] [DataLength(50)] public string MarketSys { get { return marketSys; } set { marketSys = value; } } /// /// 简称 /// [Description("简称")] [Nullable(true)] [DataLength(60)] public string Abrvition { get { return abrvition; } set { abrvition = value; } } /// /// 机构代码 /// [Description("机构代码")] [Nullable(true)] [DataLength(60)] public string Org { get { return org; } set { org = value; } } /// /// 拼音助记 /// [Description("拼音助记")] [Nullable(true)] [DataLength(60)] public string Py { get { return py; } set { py = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [Nullable(true)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 客户编码_老系统 /// [Description("客户编码_老系统")] [Nullable(true)] [DataLength(20)] public string CustomerNoOld { get { return customerNoOld; } set { customerNoOld = value; } } } }