dataset11.designer.cs
字号:
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()]
[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 奖励类型, double 奖励金额, string 是否计入工资, string 奖励原因, 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;
}
[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["奖励日期"];
}
[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(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(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;
}
[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();
DataSet11 ds = new DataSet11();
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 decimal 不计税工资 {
get {
return ((decimal)(this[this.table个人所得税表.不计税工资Column]));
}
set {
this[this.table个人所得税表.不计税工资Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public decimal 工资下限 {
get {
return ((decimal)(this[this.table个人所得税表.工资下限Column]));
}
set {
this[this.table个人所得税表.工资下限Column] = value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -