You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CaiQie/DB/Entity/User.cs

17 lines
363 B
C#

2 months ago
namespace DB.Entity
{
1 month ago
public class UserInfo:BaseChimsDb
2 months ago
{
public string UserName { get; set; }
public string Pwd { get; set; }
public long RoleId { get; set; }
}
1 month ago
public class UserMapper : SystemEntityTypeBuilder<UserInfo>
2 months ago
{
1 month ago
public UserMapper() : base("userInfo")
2 months ago
{
}
}
}