📄 sqldatabase_datadataset.designer.cs
字号:
[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 库存ID, string 时间, string 领用单位, string 领用用途, string 资产类型, int 数量, double 价格, double 总价, string 型号, string 规格, string 等级, string 厂家, string 出入库类型, string 出库入库) {
出入库明细表Row row出入库明细表Row = ((出入库明细表Row)(this.NewRow()));
row出入库明细表Row.ItemArray = new object[] {
票号,
库存ID,
时间,
领用单位,
领用用途,
资产类型,
数量,
价格,
总价,
型号,
规格,
等级,
厂家,
出入库类型,
出库入库};
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库存ID = base.Columns["库存ID"];
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["厂家"];
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库存ID = new System.Data.DataColumn("库存ID", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column库存ID);
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.column价格 = new System.Data.DataColumn("价格", typeof(double), null, System.Data.MappingType.Element);
base.Columns.Add(this.column价格);
this.column总价 = new System.Data.DataColumn("总价", typeof(double), 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.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库存ID.AllowDBNull = false;
this.column库存ID.MaxLength = 30;
this.column时间.AllowDBNull = false;
this.column时间.MaxLength = 20;
this.column领用单位.AllowDBNull = false;
this.column领用单位.MaxLength = 50;
this.column领用用途.AllowDBNull = false;
this.column领用用途.MaxLength = 50;
this.column资产类型.AllowDBNull = false;
this.column资产类型.MaxLength = 50;
this.column数量.AllowDBNull = false;
this.column价格.AllowDBNull = false;
this.column总价.AllowDBNull = false;
this.column型号.AllowDBNull = false;
this.column型号.MaxLength = 50;
this.column规格.AllowDBNull = false;
this.column规格.MaxLength = 50;
this.column等级.AllowDBNull = false;
this.column等级.MaxLength = 50;
this.column厂家.AllowDBNull = false;
this.column厂家.MaxLength = 50;
this.column出入库类型.AllowDBNull = false;
this.column出入库类型.MaxLength = 50;
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();
sqldatabase_DataDataSet ds = new sqldatabase_DataDataSet();
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库存ID;
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数量;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 库存类型DataTable() {
this.TableName = "库存类型";
this.BeginInit();
this.InitClass();
this.EndInit();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -