📄 tdsuserinfo.designer.cs
字号:
private System.Data.DataColumn columnUserID;
private System.Data.DataColumn columnPwd;
private System.Data.DataColumn columnPopedom;
private System.Data.DataColumn columnUserName;
private System.Data.DataColumn columnOriginalID;
private System.Data.DataColumn columnTel;
private System.Data.DataColumn columnMobilePhone;
private System.Data.DataColumn columnAddress;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public BSAUserDataTable() {
this.TableName = "BSAUser";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal BSAUserDataTable(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 BSAUserDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn UserIDColumn {
get {
return this.columnUserID;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn PwdColumn {
get {
return this.columnPwd;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn PopedomColumn {
get {
return this.columnPopedom;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn UserNameColumn {
get {
return this.columnUserName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn OriginalIDColumn {
get {
return this.columnOriginalID;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn TelColumn {
get {
return this.columnTel;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn MobilePhoneColumn {
get {
return this.columnMobilePhone;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn AddressColumn {
get {
return this.columnAddress;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public BSAUserRow this[int index] {
get {
return ((BSAUserRow)(this.Rows[index]));
}
}
public event BSAUserRowChangeEventHandler BSAUserRowChanging;
public event BSAUserRowChangeEventHandler BSAUserRowChanged;
public event BSAUserRowChangeEventHandler BSAUserRowDeleting;
public event BSAUserRowChangeEventHandler BSAUserRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddBSAUserRow(BSAUserRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public BSAUserRow AddBSAUserRow(string UserID, string Pwd, int Popedom, string UserName, string OriginalID, string Tel, decimal MobilePhone, string Address) {
BSAUserRow rowBSAUserRow = ((BSAUserRow)(this.NewRow()));
rowBSAUserRow.ItemArray = new object[] {
UserID,
Pwd,
Popedom,
UserName,
OriginalID,
Tel,
MobilePhone,
Address};
this.Rows.Add(rowBSAUserRow);
return rowBSAUserRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public BSAUserRow FindByUserID(string UserID) {
return ((BSAUserRow)(this.Rows.Find(new object[] {
UserID})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
BSAUserDataTable cln = ((BSAUserDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new BSAUserDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnUserID = base.Columns["UserID"];
this.columnPwd = base.Columns["Pwd"];
this.columnPopedom = base.Columns["Popedom"];
this.columnUserName = base.Columns["UserName"];
this.columnOriginalID = base.Columns["OriginalID"];
this.columnTel = base.Columns["Tel"];
this.columnMobilePhone = base.Columns["MobilePhone"];
this.columnAddress = base.Columns["Address"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnUserID = new System.Data.DataColumn("UserID", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnUserID);
this.columnPwd = new System.Data.DataColumn("Pwd", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnPwd);
this.columnPopedom = new System.Data.DataColumn("Popedom", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnPopedom);
this.columnUserName = new System.Data.DataColumn("UserName", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnUserName);
this.columnOriginalID = new System.Data.DataColumn("OriginalID", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnOriginalID);
this.columnTel = new System.Data.DataColumn("Tel", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnTel);
this.columnMobilePhone = new System.Data.DataColumn("MobilePhone", typeof(decimal), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnMobilePhone);
this.columnAddress = new System.Data.DataColumn("Address", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnAddress);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.columnUserID}, true));
this.columnUserID.AllowDBNull = false;
this.columnUserID.Unique = true;
this.columnUserID.MaxLength = 16;
this.columnPwd.AllowDBNull = false;
this.columnPwd.MaxLength = 18;
this.columnPopedom.AllowDBNull = false;
this.columnUserName.AllowDBNull = false;
this.columnUserName.MaxLength = 32;
this.columnOriginalID.AllowDBNull = false;
this.columnOriginalID.MaxLength = 20;
this.columnTel.MaxLength = 18;
this.columnAddress.AllowDBNull = false;
this.columnAddress.MaxLength = 32;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public BSAUserRow NewBSAUserRow() {
return ((BSAUserRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new BSAUserRow(builder);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -