using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_SUPP_BANK所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2016-08-16 /// public class ComBaseSuppBankEntity { /// /// 供应商代码 /// private string suppCode = ""; /// /// 供应商名称 /// private string suppName = ""; /// /// 供应商中文简称 /// private string suppShortName = ""; /// /// 银行代码 /// private string bankCode = ""; /// /// 银行名称 /// private string bankName = ""; /// /// 银行城市 /// private string bankCity = ""; /// /// 银行地区码 /// private string bankArea = ""; /// /// 银行帐号 /// private string bankAccount = ""; /// /// 序列号 /// private string id = ""; /// /// 供应商代码 /// [Description("供应商代码")] [Nullable(false)] [DataLength(64)] [JsonProperty("suppCode")] public string SuppCode { get { return suppCode; } set { suppCode = value; } } /// /// 供应商名称 /// [Description("供应商名称")] [Nullable(true)] [DataLength(256)] [JsonProperty("suppName")] public string SuppName { get { return suppName; } set { suppName = value; } } /// /// 供应商中文简称 /// [Description("供应商中文简称")] [Nullable(true)] [DataLength(256)] [JsonProperty("suppShortName")] public string SuppShortName { get { return suppShortName; } set { suppShortName = value; } } /// /// 银行代码 /// [Description("银行代码")] [Nullable(true)] [DataLength(10)] [JsonProperty("bankCode")] public string BankCode { get { return bankCode; } set { bankCode = value; } } /// /// 银行名称 /// [Description("银行名称")] [Nullable(true)] [DataLength(60)] [JsonProperty("bankName")] public string BankName { get { return bankName; } set { bankName = value; } } /// /// 银行城市 /// [Description("银行城市")] [Nullable(true)] [DataLength(128)] [JsonProperty("bankCity")] public string BankCity { get { return bankCity; } set { bankCity = value; } } /// /// 银行地区码 /// [Description("银行地区码")] [Nullable(true)] [DataLength(20)] [JsonProperty("bankArea")] public string BankArea { get { return bankArea; } set { bankArea = value; } } /// /// 银行帐号 /// [Description("银行帐号")] [Nullable(false)] [DataLength(30)] [JsonProperty("bankAccount")] public string BankAccount { get { return bankAccount; } set { bankAccount = value; } } /// /// 序列号 /// [Description("序列号")] [Nullable(true)] [DataLength(256)] [JsonProperty("id")] public string Id { get { return id; } set { id = value; } } } }