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

📄 dataset7.designer.cs

📁 图书管理系统源代码,很图书管理系统源代码,很不错,有参考作用不错,有参考作用
💻 CS
📖 第 1 页 / 共 3 页
字号:
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal 图书信息Row(System.Data.DataRowBuilder rb) : 
                    base(rb) {
                this.table图书信息 = ((图书信息DataTable)(this.Table));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int 罚款编号 {
                get {
                    return ((int)(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 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 System.DateTime 罚款日期 {
                get {
                    try {
                        return ((System.DateTime)(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 decimal 应罚金额 {
                get {
                    try {
                        return ((decimal)(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 decimal 实收金额 {
                get {
                    try {
                        return ((decimal)(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 bool 是否交款 {
                get {
                    try {
                        return ((bool)(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 bool Is图书编号Null() {
                return this.IsNull(this.table图书信息.图书编号Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set图书编号Null() {
                this[this.table图书信息.图书编号Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is书名Null() {
                return this.IsNull(this.table图书信息.书名Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set书名Null() {
                this[this.table图书信息.书名Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is读者编号Null() {
                return this.IsNull(this.table图书信息.读者编号Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set读者编号Null() {
                this[this.table图书信息.读者编号Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is姓名Null() {
                return this.IsNull(this.table图书信息.姓名Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set姓名Null() {
                this[this.table图书信息.姓名Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is罚款日期Null() {
                return this.IsNull(this.table图书信息.罚款日期Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set罚款日期Null() {
                this[this.table图书信息.罚款日期Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is应罚金额Null() {
                return this.IsNull(this.table图书信息.应罚金额Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set应罚金额Null() {
                this[this.table图书信息.应罚金额Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is实收金额Null() {
                return this.IsNull(this.table图书信息.实收金额Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set实收金额Null() {
                this[this.table图书信息.实收金额Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is是否交款Null() {
                return this.IsNull(this.table图书信息.是否交款Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set是否交款Null() {
                this[this.table图书信息.是否交款Column] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool Is备注Null() {
                return this.IsNull(this.table图书信息.备注Column);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Set备注Null() {
                this[this.table图书信息.备注Column] = System.Convert.DBNull;
            }
        }
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        public class 图书信息RowChangeEvent : System.EventArgs {
            
            private 图书信息Row eventRow;
            
            private System.Data.DataRowAction eventAction;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 图书信息RowChangeEvent(图书信息Row row, System.Data.DataRowAction action) {
                this.eventRow = row;
                this.eventAction = action;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 图书信息Row Row {
                get {
                    return this.eventRow;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataRowAction Action {
                get {
                    return this.eventAction;
                }
            }
        }
    }
}

#pragma warning restore 1591

⌨️ 快捷键说明

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