dataset11.designer.cs
字号:
[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()]
[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(int 编号, string 级数, decimal 不计税工资, decimal 工资下限, decimal 工资上限, decimal 个人所得税率, decimal 速算扣除数, string 备注) {
个人所得税表Row row个人所得税表Row = ((个人所得税表Row)(this.NewRow()));
row个人所得税表Row.ItemArray = new object[] {
编号,
级数,
不计税工资,
工资下限,
工资上限,
个人所得税率,
速算扣除数,
备注};
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(decimal), 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(decimal), 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(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.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.column编号}, true));
this.column编号.AllowDBNull = false;
this.column编号.Unique = true;
this.column级数.AllowDBNull = false;
this.column不计税工资.AllowDBNull = false;
this.column工资下限.AllowDBNull = false;
this.column工资上限.AllowDBNull = false;
this.column个人所得税率.AllowDBNull = false;
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")]
[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奖励日期;
[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()]
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -