📄 bluehillmanagementdataset10.designer.cs
字号:
public delegate void 员工表RowChangeEventHandler(object sender, 员工表RowChangeEvent e);
[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员工编号;
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员工基本薪资;
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员工剩余假期;
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()]
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()]
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 员工姓名, string 员工登录名, string 员工电子邮件, int 员工所属部门编号, decimal 员工基本薪资, string 员工职位名称, string 员工电话, System.DateTime 员工报到日期, string 自我介绍, int 员工剩余假期, string 级别, int 部门编号) {
员工表Row row员工表Row = ((员工表Row)(this.NewRow()));
row员工表Row.ItemArray = new object[] {
null,
员工姓名,
员工登录名,
员工电子邮件,
员工所属部门编号,
员工基本薪资,
员工职位名称,
员工电话,
员工报到日期,
自我介绍,
员工剩余假期,
级别,
部门编号};
this.Rows.Add(row员工表Row);
return row员工表Row;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 员工表Row FindBy员工编号(int 员工编号) {
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;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -