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

📄 myhoteldataset.designer.cs

📁 一个很好的宾馆管理系统 VC++和SQL做的
💻 CS
📖 第 1 页 / 共 5 页
字号:
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            [System.ComponentModel.Browsable(false)]
            public int Count {
                get {
                    return this.Rows.Count;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 酒店信息Row this[int index] {
                get {
                    return ((酒店信息Row)(this.Rows[index]));
                }
            }
            
            public event 酒店信息RowChangeEventHandler 酒店信息RowChanging;
            
            public event 酒店信息RowChangeEventHandler 酒店信息RowChanged;
            
            public event 酒店信息RowChangeEventHandler 酒店信息RowDeleting;
            
            public event 酒店信息RowChangeEventHandler 酒店信息RowDeleted;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Add酒店信息Row(酒店信息Row row) {
                this.Rows.Add(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 酒店信息Row Add酒店信息Row(string 酒店名称, string 法人代表, string 酒店地址, string 服务电话, string 邮政编码, string 电子邮件, string 酒店网站, string 管理系统背景照片, string 管理系统显示名称, int 显示优先级) {
                酒店信息Row row酒店信息Row = ((酒店信息Row)(this.NewRow()));
                row酒店信息Row.ItemArray = new object[] {
                        酒店名称,
                        法人代表,
                        酒店地址,
                        服务电话,
                        邮政编码,
                        电子邮件,
                        酒店网站,
                        管理系统背景照片,
                        管理系统显示名称,
                        显示优先级};
                this.Rows.Add(row酒店信息Row);
                return row酒店信息Row;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 酒店信息Row FindBy酒店名称(string 酒店名称) {
                return ((酒店信息Row)(this.Rows.Find(new object[] {
                            酒店名称})));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public virtual System.Collections.IEnumerator GetEnumerator() {
                return this.Rows.GetEnumerator();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public override System.Data.DataTable Clone() {
                酒店信息DataTable cln = ((酒店信息DataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataTable CreateInstance() {
                return new 酒店信息DataTable();
            }
            
            [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["显示优先级"];
            }
            
            [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(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(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.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 = 50;
                this.column法人代表.MaxLength = 50;
                this.column酒店地址.MaxLength = 50;
                this.column服务电话.MaxLength = 50;
                this.column邮政编码.MaxLength = 10;
                this.column电子邮件.MaxLength = 50;
                this.column酒店网站.MaxLength = 50;
                this.column管理系统背景照片.MaxLength = 100;
                this.column管理系统显示名称.MaxLength = 30;
            }
            
            [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();
                MyHotelDataSet ds = new MyHotelDataSet();
                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")]
        [System.Serializable()]
        [System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
        public partial class 操作用户DataTable : System.Data.DataTable, System.Collections.IEnumerable {
            
            private System.Data.DataColumn column用户名称;
            
            private System.Data.DataColumn column用户密码;
            
            private System.Data.DataColumn column客房管理之入住登记;
            
            private System.Data.DataColumn column客房管理之换房登记;
            
            private System.Data.DataColumn column客房管理之退房登记;
            
            private System.Data.DataColumn column客房管理之预订房间;
            
            private System.Data.DataColumn column客房管理之预订入住;
            
            private System.Data.DataColumn column客房管理之补交押金;
            
            private System.Data.DataColumn column客房管理之补打帐单;
            
            private System.Data.DataColumn column费用管理之餐费入帐;
            
            private System.Data.DataColumn column费用管理之话费入帐;
            
            private System.Data.DataColumn column费用管理之消费入帐;
            
            private System.Data.DataColumn column查询管理之入住旅客信息;
            
            private System.Data.DataColumn column查询管理之客房入住状态;
            
            private System.Data.DataColumn column查询管理之物品消耗信息;
            
            private System.Data.DataColumn column查询管理之物品消耗汇总;
            
            private System.Data.DataColumn column查询管理之押金消费信息;
            

⌨️ 快捷键说明

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