📄 elysiandbdataset1.designer.cs
字号:
private System.Data.DataColumn column经手人;
private System.Data.DataColumn column备注;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 商品出库信息DataTable() {
this.TableName = "商品出库信息";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal 商品出库信息DataTable(System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected 商品出库信息DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 出库编号Column {
get {
return this.column出库编号;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 商品编号Column {
get {
return this.column商品编号;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 商品名称Column {
get {
return this.column商品名称;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 出库日期Column {
get {
return this.column出库日期;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 经手人Column {
get {
return this.column经手人;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 备注Column {
get {
return this.column备注;
}
}
[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 出库编号, 商品基本信息Row parent商品基本信息RowByFK_商品出库信息_商品基本信息, string 商品名称, System.DateTime 出库日期, string 经手人, string 备注) {
商品出库信息Row row商品出库信息Row = ((商品出库信息Row)(this.NewRow()));
row商品出库信息Row.ItemArray = new object[] {
出库编号,
parent商品基本信息RowByFK_商品出库信息_商品基本信息[0],
商品名称,
出库日期,
经手人,
备注};
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["备注"];
}
[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(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.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 = 30;
this.column商品编号.AllowDBNull = false;
this.column商品编号.MaxLength = 30;
this.column商品名称.MaxLength = 30;
this.column经手人.MaxLength = 12;
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();
ElysianDBDataSet1 ds = new ElysianDBDataSet1();
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.Nam
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -