📄 银行储蓄系统dataset4.designer.cs
字号:
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(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.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类型.AllowDBNull = false;
this.column类型.MaxLength = 10;
this.column金额.AllowDBNull = false;
this.column利率.AllowDBNull = false;
this.column期限.AllowDBNull = false;
this.column密码.AllowDBNull = false;
this.column密码.MaxLength = 10;
this.column开户日期.AllowDBNull = false;
this.column利息.AllowDBNull = false;
this.column储户编号.AllowDBNull = false;
this.column储户编号.MaxLength = 10;
}
[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();
银行储蓄系统DataSet4 ds = new 银行储蓄系统DataSet4();
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 {
return ((string)(this[this.table帐号信息.类型Column]));
}
set {
this[this.table帐号信息.类型Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public decimal 金额 {
get {
return ((decimal)(this[this.table帐号信息.金额Column]));
}
set {
this[this.table帐号信息.金额Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public double 利率 {
get {
return ((double)(this[this.table帐号信息.利率Column]));
}
set {
this[this.table帐号信息.利率Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.DateTime 期限 {
get {
return ((System.DateTime)(this[this.table帐号信息.期限Column]));
}
set {
this[this.table帐号信息.期限Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string 密码 {
get {
return ((string)(this[this.table帐号信息.密码Column]));
}
set {
this[this.table帐号信息.密码Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.DateTime 开户日期 {
get {
return ((System.DateTime)(this[this.table帐号信息.开户日期Column]));
}
set {
this[this.table帐号信息.开户日期Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public decimal 利息 {
get {
return ((decimal)(this[this.table帐号信息.利息Column]));
}
set {
this[this.table帐号信息.利息Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string 储户编号 {
get {
return ((string)(this[this.table帐号信息.储户编号Column]));
}
set {
this[this.table帐号信息.储户编号Column] = value;
}
}
}
[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()]
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -