?? user.cs
字號:
//
// Generated by ActiveRecord Generator
//
//
namespace JPKC.DAL.WLDXT
{
using Castle.ActiveRecord;
[ActiveRecord("Users")]
public class User : ActiveRecordBase<User>
{
private int _usersID;
private string _usersName;
private string _usersPwd;
private bool _dELETELAG;
[PrimaryKey(PrimaryKeyType.Native)]
public int UsersID
{
get
{
return this._usersID;
}
set
{
this._usersID = value;
}
}
[Property()]
public string UsersName
{
get
{
return this._usersName;
}
set
{
this._usersName = value;
}
}
[Property()]
public string UsersPwd
{
get
{
return this._usersPwd;
}
set
{
this._usersPwd = value;
}
}
[Property()]
public bool DELETELAG
{
get
{
return this._dELETELAG;
}
set
{
this._dELETELAG = value;
}
}
//public static void DeleteAll()
//{
// ActiveRecordBase.DeleteAll(typeof(User));
//}
//public static User[] FindAll()
//{
// return ((User[])(ActiveRecordBase.FindAll(typeof(User))));
//}
//public static User Find(int UsersID)
//{
// return ((User)(ActiveRecordBase.FindByPrimaryKey(typeof(User), UsersID)));
//}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -