📄 bluehillmanagementdataset4.designer.cs
字号:
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int 记录者编号 {
get {
return ((int)(this[this.table员工考勤表.记录者编号Column]));
}
set {
this[this.table员工考勤表.记录者编号Column] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string 考勤类型 {
get {
try {
return ((string)(this[this.table员工考勤表.考勤类型Column]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("表“员工考勤表”中列“考勤类型”的值为 DBNull。", e);
}
}
set {
this[this.table员工考勤表.考勤类型Column] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int 请求重新审核 {
get {
try {
return ((int)(this[this.table员工考勤表.请求重新审核Column]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("表“员工考勤表”中列“请求重新审核”的值为 DBNull。", e);
}
}
set {
this[this.table员工考勤表.请求重新审核Column] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.DateTime 日期 {
get {
try {
return ((global::System.DateTime)(this[this.table员工考勤表.日期Column]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("表“员工考勤表”中列“日期”的值为 DBNull。", e);
}
}
set {
this[this.table员工考勤表.日期Column] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool Is到达时间Null() {
return this.IsNull(this.table员工考勤表.到达时间Column);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Set到达时间Null() {
this[this.table员工考勤表.到达时间Column] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool Is考勤类型Null() {
return this.IsNull(this.table员工考勤表.考勤类型Column);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Set考勤类型Null() {
this[this.table员工考勤表.考勤类型Column] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool Is请求重新审核Null() {
return this.IsNull(this.table员工考勤表.请求重新审核Column);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Set请求重新审核Null() {
this[this.table员工考勤表.请求重新审核Column] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool Is日期Null() {
return this.IsNull(this.table员工考勤表.日期Column);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Set日期Null() {
this[this.table员工考勤表.日期Column] = global::System.Convert.DBNull;
}
}
/// <summary>
///Row event argument class
///</summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public class 员工考勤表RowChangeEvent : global::System.EventArgs {
private 员工考勤表Row eventRow;
private global::System.Data.DataRowAction eventAction;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 员工考勤表RowChangeEvent(员工考勤表Row row, global::System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 员工考勤表Row Row {
get {
return this.eventRow;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataRowAction Action {
get {
return this.eventAction;
}
}
}
}
}
namespace BlueHill_Win_.BlueHillManagementDataSet4TableAdapters {
/// <summary>
///Represents the connection and commands used to retrieve and save data.
///</summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[global::System.ComponentModel.DesignerCategoryAttribute("code")]
[global::System.ComponentModel.ToolboxItem(true)]
[global::System.ComponentModel.DataObjectAttribute(true)]
[global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
", Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
public partial class 员工考勤表TableAdapter : global::System.ComponentModel.Component {
private global::System.Data.SqlClient.SqlDataAdapter _adapter;
private global::System.Data.SqlClient.SqlConnection _connection;
private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
private bool _clearBeforeFill;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 员工考勤表TableAdapter() {
this.ClearBeforeFill = true;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
private global::System.Data.SqlClient.SqlDataAdapter Adapter {
get {
if ((this._adapter == null)) {
this.InitAdapter();
}
return this._adapter;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal global::System.Data.SqlClient.SqlConnection Connection {
get {
if ((this._connection == null)) {
this.InitConnection();
}
return this._connection;
}
set {
this._connection = value;
if ((this.Adapter.InsertCommand != null)) {
this.Adapter.InsertCommand.Connection = value;
}
if ((this.Adapter.DeleteCommand != null)) {
this.Adapter.DeleteCommand.Connection = value;
}
if ((this.Adapter.UpdateCommand != null)) {
this.Adapter.UpdateCommand.Connection = value;
}
for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
if ((this.CommandCollection[i] != null)) {
((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
}
}
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
get {
if ((this._commandCollection == null)) {
this.InitCommandCollection();
}
return this._commandCollection;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool ClearBeforeFill {
get {
return this._clearBeforeFill;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -