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

📄 bluehillmanagementdataset6.designer.cs

📁 人事管理系统
💻 CS
📖 第 1 页 / 共 5 页
字号:
                        员工姓名,
                        员工登录名,
                        员工电子邮件,
                        员工所属部门编号,
                        员工基本薪资,
                        员工电话,
                        员工报到日期,
                        员工剩余假期,
                        照片,
                        级别};
                row员工表Row.ItemArray = columnValuesArray;
                this.Rows.Add(row员工表Row);
                return row员工表Row;
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 员工表Row FindBy员工编号(int 员工编号) {
                return ((员工表Row)(this.Rows.Find(new object[] {
                            员工编号})));
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public virtual global::System.Collections.IEnumerator GetEnumerator() {
                return this.Rows.GetEnumerator();
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public override global::System.Data.DataTable Clone() {
                员工表DataTable cln = ((员工表DataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override global::System.Data.DataTable CreateInstance() {
                return new 员工表DataTable();
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            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["照片"];
                this.column级别 = base.Columns["级别"];
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            private void InitClass() {
                this.column员工编号 = new global::System.Data.DataColumn("员工编号", typeof(int), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column员工编号);
                this.column员工姓名 = new global::System.Data.DataColumn("员工姓名", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column员工姓名);
                this.column员工登录名 = new global::System.Data.DataColumn("员工登录名", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column员工登录名);
                this.column员工电子邮件 = new global::System.Data.DataColumn("员工电子邮件", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column员工电子邮件);
                this.column员工所属部门编号 = new global::System.Data.DataColumn("员工所属部门编号", typeof(int), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column员工所属部门编号);
                this.column员工基本薪资 = new global::System.Data.DataColumn("员工基本薪资", typeof(decimal), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column员工基本薪资);
                this.column员工电话 = new global::System.Data.DataColumn("员工电话", typeof(int), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column员工电话);
                this.column员工报到日期 = new global::System.Data.DataColumn("员工报到日期", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column员工报到日期);
                this.column员工剩余假期 = new global::System.Data.DataColumn("员工剩余假期", typeof(int), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column员工剩余假期);
                this.column照片 = new global::System.Data.DataColumn("照片", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column照片);
                this.column级别 = new global::System.Data.DataColumn("级别", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column级别);
                this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
                                this.column员工编号}, true));
                this.column员工编号.AutoIncrement = true;
                this.column员工编号.AllowDBNull = false;
                this.column员工编号.ReadOnly = true;
                this.column员工编号.Unique = true;
                this.column员工姓名.AllowDBNull = false;
                this.column员工姓名.MaxLength = 2147483647;
                this.column员工登录名.AllowDBNull = false;
                this.column员工登录名.MaxLength = 50;
                this.column员工电子邮件.AllowDBNull = false;
                this.column员工电子邮件.MaxLength = 2147483647;
                this.column员工所属部门编号.AllowDBNull = false;
                this.column照片.MaxLength = 1073741823;
                this.column级别.MaxLength = 10;
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 员工表Row New员工表Row() {
                return ((员工表Row)(this.NewRow()));
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
                return new 员工表Row(builder);
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override global::System.Type GetRowType() {
                return typeof(员工表Row);
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.员工表RowChanged != null)) {
                    this.员工表RowChanged(this, new 员工表RowChangeEvent(((员工表Row)(e.Row)), e.Action));
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.员工表RowChanging != null)) {
                    this.员工表RowChanging(this, new 员工表RowChangeEvent(((员工表Row)(e.Row)), e.Action));
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.员工表RowDeleted != null)) {
                    this.员工表RowDeleted(this, new 员工表RowChangeEvent(((员工表Row)(e.Row)), e.Action));
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.员工表RowDeleting != null)) {
                    this.员工表RowDeleting(this, new 员工表RowChangeEvent(((员工表Row)(e.Row)), e.Action));
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Remove员工表Row(员工表Row row) {
                this.Rows.Remove(row);
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
                global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
                global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
                BlueHillManagementDataSet6 ds = new BlueHillManagementDataSet6();
                global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
                any1.Namespace = "http://www.w3.org/2001/XMLSchema";
                any1.MinOccurs = new decimal(0);
                any1.MaxOccurs = decimal.MaxValue;
                any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any1);
                global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
                any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
                any2.MinOccurs = new decimal(1);
                any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any2);
                global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute1.Name = "namespace";
                attribute1.FixedValue = ds.Namespace;
                type.Attributes.Add(attribute1);
                global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute2.Name = "tableTypeName";
                attribute2.FixedValue = "员工表DataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
                if (xs.Contains(dsSchema.TargetNamespace)) {
                    global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                    global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                    try {
                        global::System.Xml.Schema.XmlSchema schema = null;
                        dsSchema.Write(s1);
                        for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
                            schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                            s2.SetLength(0);
                            schema.Write(s2);
                            if ((s1.Length == s2.Length)) {
                                s1.Position = 0;
                                s2.Position = 0;
                                for (; ((s1.Position != s1.Length) 
                                            && (s1.ReadByte() == s2.ReadByte())); ) {
                                    ;
                                }
                                if ((s1.Position == s1.Length)) {
                                    return type;
                                }
                            }
                        }
                    }
                    finally {
                        if ((s1 != null)) {
                            s1.Close();
                        }
                        if ((s2 != null)) {
                            s2.Close();
                        }
                    }
                }
                xs.Add(dsSchema);
                return type;
            }
        }
        
        /// <summary>
        ///Represents strongly named DataRow class.
        ///</summary>
        [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]

⌨️ 快捷键说明

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