📄 bluehillmanagementdataset5.designer.cs
字号:
global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
any.Namespace = ds.Namespace;
sequence.Items.Add(any);
type.Particle = sequence;
global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
if (xs.Contains(dsSchema.TargetNamespace)) {
global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
try {
global::System.Xml.Schema.XmlSchema schema = null;
dsSchema.Write(s1);
for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
s2.SetLength(0);
schema.Write(s2);
if ((s1.Length == s2.Length)) {
s1.Position = 0;
s2.Position = 0;
for (; ((s1.Position != s1.Length)
&& (s1.ReadByte() == s2.ReadByte())); ) {
;
}
if ((s1.Position == s1.Length)) {
return type;
}
}
}
}
finally {
if ((s1 != null)) {
s1.Close();
}
if ((s2 != null)) {
s2.Close();
}
}
}
xs.Add(dsSchema);
return type;
}
public delegate void 员工薪资表RowChangeEventHandler(object sender, 员工薪资表RowChangeEvent e);
/// <summary>
///Represents the strongly named DataTable class.
///</summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[global::System.Serializable()]
[global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class 员工薪资表DataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
private global::System.Data.DataColumn column薪资编号;
private global::System.Data.DataColumn column员工编号;
private global::System.Data.DataColumn column薪资发放时间;
private global::System.Data.DataColumn column加班薪资;
private global::System.Data.DataColumn column缺勤扣除;
private global::System.Data.DataColumn column其他薪资;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 员工薪资表DataTable() {
this.TableName = "员工薪资表";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal 员工薪资表DataTable(global::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;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected 员工薪资表DataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn 薪资编号Column {
get {
return this.column薪资编号;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn 员工编号Column {
get {
return this.column员工编号;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn 薪资发放时间Column {
get {
return this.column薪资发放时间;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn 加班薪资Column {
get {
return this.column加班薪资;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn 缺勤扣除Column {
get {
return this.column缺勤扣除;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn 其他薪资Column {
get {
return this.column其他薪资;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[global::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;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Add员工薪资表Row(员工薪资表Row row) {
this.Rows.Add(row);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 员工薪资表Row Add员工薪资表Row(int 薪资编号, int 员工编号, System.DateTime 薪资发放时间, int 加班薪资, int 缺勤扣除, int 其他薪资) {
员工薪资表Row row员工薪资表Row = ((员工薪资表Row)(this.NewRow()));
object[] columnValuesArray = new object[] {
薪资编号,
员工编号,
薪资发放时间,
加班薪资,
缺勤扣除,
其他薪资};
row员工薪资表Row.ItemArray = columnValuesArray;
this.Rows.Add(row员工薪资表Row);
return row员工薪资表Row;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 员工薪资表Row FindBy薪资编号(int 薪资编号) {
return ((员工薪资表Row)(this.Rows.Find(new object[] {
薪资编号})));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual global::System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override global::System.Data.DataTable Clone() {
员工薪资表DataTable cln = ((员工薪资表DataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override global::System.Data.DataTable CreateInstance() {
return new 员工薪资表DataTable();
}
[global::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["其他薪资"];
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -