📄 bluehillmanagementdataset10.designer.cs
字号:
}
[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["员工基本薪资"];
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(int), 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(decimal), 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(int), 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.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.column员工编号}, true));
this.column员工编号.AutoIncrement = true;
this.column员工编号.AllowDBNull = false;
this.column员工编号.ReadOnly = true;
this.column员工编号.Unique = true;
this.column员工姓名.AllowDBNull = false;
this.column员工姓名.MaxLength = 2147483647;
this.column员工登录名.AllowDBNull = false;
this.column员工登录名.MaxLength = 50;
this.column员工电子邮件.AllowDBNull = false;
this.column员工电子邮件.MaxLength = 2147483647;
this.column员工所属部门编号.AllowDBNull = false;
this.column员工职位名称.MaxLength = 10;
this.column员工电话.MaxLength = 2147483647;
this.column自我介绍.MaxLength = 1073741823;
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();
BlueHillManagementDataSet10 ds = new BlueHillManagementDataSet10();
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")]
public partial class 员工表Row : System.Data.DataRow {
private 员工表DataTable table员工表;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal 员工表Row(System.Data.DataRowBuilder rb) :
base(rb) {
this.table员工表 = ((员工表DataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int 员工编号 {
get {
return ((int)(this[this.table员工表.员工编号Column]));
}
set {
this[this.table员工表.员工编号Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string 员工姓名 {
get {
return ((string)(this[this.table员工表.员工姓名Column]));
}
set {
this[this.table员工表.员工姓名Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string 员工登录名 {
get {
return ((string)(this[this.table员工表.员工登录名Column]));
}
set {
this[this.table员工表.员工登录名Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string 员工电子邮件 {
get {
return ((string)(this[this.table员工表.员工电子邮件Column]));
}
set {
this[this.table员工表.员工电子邮件Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int 员工所属部门编号 {
get {
return ((int)(this[this.table员工表.员工所属部门编号Column]));
}
set {
this[this.table员工表.员工所属部门编号Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public decimal 员工基本薪资 {
get {
try {
return ((decimal)(this[this.table员工表.员工基本薪资Column]));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -