⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 银行储蓄系统dataset2.designer.cs

📁 这是一个银行储蓄系统的源代码及数据库文件
💻 CS
📖 第 1 页 / 共 5 页
字号:
            internal void InitVars() {
                this.column卡号 = base.Columns["卡号"];
                this.column储户姓名 = base.Columns["储户姓名"];
                this.column存款人 = base.Columns["存款人"];
                this.column业务员编号 = base.Columns["业务员编号"];
                this.column存款类型 = base.Columns["存款类型"];
                this.column利率 = base.Columns["利率"];
                this.column存款金额 = base.Columns["存款金额"];
                this.column存款期限 = base.Columns["存款期限"];
                this.column存款日期 = base.Columns["存款日期"];
                this.column备注 = base.Columns["备注"];
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            private void InitClass() {
                this.column卡号 = new System.Data.DataColumn("卡号", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column卡号);
                this.column储户姓名 = new System.Data.DataColumn("储户姓名", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column储户姓名);
                this.column存款人 = new System.Data.DataColumn("存款人", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column存款人);
                this.column业务员编号 = new System.Data.DataColumn("业务员编号", typeof(int), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column业务员编号);
                this.column存款类型 = new System.Data.DataColumn("存款类型", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column存款类型);
                this.column利率 = new System.Data.DataColumn("利率", typeof(double), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column利率);
                this.column存款金额 = new System.Data.DataColumn("存款金额", typeof(decimal), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column存款金额);
                this.column存款期限 = new System.Data.DataColumn("存款期限", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column存款期限);
                this.column存款日期 = new System.Data.DataColumn("存款日期", typeof(System.DateTime), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column存款日期);
                this.column备注 = new System.Data.DataColumn("备注", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column备注);
                this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
                                this.column卡号}, true));
                this.column卡号.AllowDBNull = false;
                this.column卡号.Unique = true;
                this.column卡号.MaxLength = 10;
                this.column储户姓名.MaxLength = 10;
                this.column存款人.MaxLength = 10;
                this.column存款类型.MaxLength = 10;
                this.column存款期限.MaxLength = 10;
                this.column备注.MaxLength = 50;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 存款信息Row New存款信息Row() {
                return ((存款信息Row)(this.NewRow()));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
                return new 存款信息Row(builder);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Type GetRowType() {
                return typeof(存款信息Row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.存款信息RowChanged != null)) {
                    this.存款信息RowChanged(this, new 存款信息RowChangeEvent(((存款信息Row)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.存款信息RowChanging != null)) {
                    this.存款信息RowChanging(this, new 存款信息RowChangeEvent(((存款信息Row)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.存款信息RowDeleted != null)) {
                    this.存款信息RowDeleted(this, new 存款信息RowChangeEvent(((存款信息Row)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.存款信息RowDeleting != null)) {
                    this.存款信息RowDeleting(this, new 存款信息RowChangeEvent(((存款信息Row)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Remove存款信息Row(存款信息Row row) {
                this.Rows.Remove(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
                System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
                System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
                银行储蓄系统DataSet2 ds = new 银行储蓄系统DataSet2();
                xs.Add(ds.GetSchemaSerializable());
                System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
                any1.Namespace = "http://www.w3.org/2001/XMLSchema";
                any1.MinOccurs = new decimal(0);
                any1.MaxOccurs = decimal.MaxValue;
                any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any1);
                System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
                any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
                any2.MinOccurs = new decimal(1);
                any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any2);
                System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
                attribute1.Name = "namespace";
                attribute1.FixedValue = ds.Namespace;
                type.Attributes.Add(attribute1);
                System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
                attribute2.Name = "tableTypeName";
                attribute2.FixedValue = "存款信息DataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                return type;
            }
        }
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        public partial class 存款信息Row : System.Data.DataRow {
            
            private 存款信息DataTable table存款信息;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal 存款信息Row(System.Data.DataRowBuilder rb) : 
                    base(rb) {
                this.table存款信息 = ((存款信息DataTable)(this.Table));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string 卡号 {
                get {
                    return ((string)(this[this.table存款信息.卡号Column]));
                }
                set {
                    this[this.table存款信息.卡号Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string 储户姓名 {
                get {
                    try {
                        return ((string)(this[this.table存款信息.储户姓名Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“存款信息”中列“储户姓名”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.table存款信息.储户姓名Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string 存款人 {
                get {
                    try {
                        return ((string)(this[this.table存款信息.存款人Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“存款信息”中列“存款人”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.table存款信息.存款人Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int 业务员编号 {
                get {
                    try {
                        return ((int)(this[this.table存款信息.业务员编号Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“存款信息”中列“业务员编号”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.table存款信息.业务员编号Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string 存款类型 {
                get {
                    try {
                        return ((string)(this[this.table存款信息.存款类型Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“存款信息”中列“存款类型”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.table存款信息.存款类型Column] = value;
                }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -