📄 bluehillmanagementdataset3.designer.cs
字号:
private global::System.Data.DataColumn column员工姓名;
private global::System.Data.DataColumn column到达时间;
private global::System.Data.DataColumn column考勤类型;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public _查看员工考勤信息_Win_DataTable() {
this.TableName = "查看员工考勤信息(Win)";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal _查看员工考勤信息_Win_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 _查看员工考勤信息_Win_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()]
[global::System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public _查看员工考勤信息_Win_Row this[int index] {
get {
return ((_查看员工考勤信息_Win_Row)(this.Rows[index]));
}
}
public event _查看员工考勤信息_Win_RowChangeEventHandler _查看员工考勤信息_Win_RowChanging;
public event _查看员工考勤信息_Win_RowChangeEventHandler _查看员工考勤信息_Win_RowChanged;
public event _查看员工考勤信息_Win_RowChangeEventHandler _查看员工考勤信息_Win_RowDeleting;
public event _查看员工考勤信息_Win_RowChangeEventHandler _查看员工考勤信息_Win_RowDeleted;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Add_查看员工考勤信息_Win_Row(_查看员工考勤信息_Win_Row row) {
this.Rows.Add(row);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public _查看员工考勤信息_Win_Row Add_查看员工考勤信息_Win_Row(int 考勤编号, string 员工姓名, System.DateTime 到达时间, string 考勤类型) {
_查看员工考勤信息_Win_Row row_查看员工考勤信息_Win_Row = ((_查看员工考勤信息_Win_Row)(this.NewRow()));
object[] columnValuesArray = new object[] {
考勤编号,
员工姓名,
到达时间,
考勤类型};
row_查看员工考勤信息_Win_Row.ItemArray = columnValuesArray;
this.Rows.Add(row_查看员工考勤信息_Win_Row);
return row_查看员工考勤信息_Win_Row;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public _查看员工考勤信息_Win_Row FindBy考勤编号(int 考勤编号) {
return ((_查看员工考勤信息_Win_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() {
_查看员工考勤信息_Win_DataTable cln = ((_查看员工考勤信息_Win_DataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override global::System.Data.DataTable CreateInstance() {
return new _查看员工考勤信息_Win_DataTable();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.column考勤编号 = base.Columns["考勤编号"];
this.column员工姓名 = base.Columns["员工姓名"];
this.column到达时间 = base.Columns["到达时间"];
this.column考勤类型 = base.Columns["考勤类型"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.column考勤编号 = new global::System.Data.DataColumn("考勤编号", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.column考勤编号);
this.column员工姓名 = new global::System.Data.DataColumn("员工姓名", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.column员工姓名);
this.column到达时间 = new global::System.Data.DataColumn("到达时间", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.column到达时间);
this.column考勤类型 = new global::System.Data.DataColumn("考勤类型", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.column考勤类型);
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
this.column考勤编号}, true));
this.column考勤编号.AllowDBNull = false;
this.column考勤编号.Unique = true;
this.column员工姓名.AllowDBNull = false;
this.column员工姓名.MaxLength = 2147483647;
this.column考勤类型.MaxLength = 10;
this.ExtendedProperties.Add("Generator_TableVarName", "_table查看员工考勤信息_Win_");
this.ExtendedProperties.Add("Generator_UserTableName", "查看员工考勤信息(Win)");
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public _查看员工考勤信息_Win_Row New_查看员工考勤信息_Win_Row() {
return ((_查看员工考勤信息_Win_Row)(this.NewRow()));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
return new _查看员工考勤信息_Win_Row(builder);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override global::System.Type GetRowType() {
return typeof(_查看员工考勤信息_Win_Row);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this._查看员工考勤信息_Win_RowChanged != null)) {
this._查看员工考勤信息_Win_RowChanged(this, new _查看员工考勤信息_Win_RowChangeEvent(((_查看员工考勤信息_Win_Row)(e.Row)), e.Action));
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this._查看员工考勤信息_Win_RowChanging != null)) {
this._查看员工考勤信息_Win_RowChanging(this, new _查看员工考勤信息_Win_RowChangeEvent(((_查看员工考勤信息_Win_Row)(e.Row)), e.Action));
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this._查看员工考勤信息_Win_RowDeleted != null)) {
this._查看员工考勤信息_Win_RowDeleted(this, new _查看员工考勤信息_Win_RowChangeEvent(((_查看员工考勤信息_Win_Row)(e.Row)), e.Action));
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this._查看员工考勤信息_Win_RowDeleting != null)) {
this._查看员工考勤信息_Win_RowDeleting(this, new _查看员工考勤信息_Win_RowChangeEvent(((_查看员工考勤信息_Win_Row)(e.Row)), e.Action));
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Remove_查看员工考勤信息_Win_Row(_查看员工考勤信息_Win_Row row) {
this.Rows.Remove(row);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
BlueHillManagementDataSet3 ds = new BlueHillManagementDataSet3();
global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "_查看员工考勤信息_Win_DataTable";
type.Attributes.Add(attribute2);
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();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -