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.
|
namespace DB.Entity
|
|
{
|
|
public class User:BaseChimsDb
|
|
{
|
|
public string UserName { get; set; }
|
|
public string Pwd { get; set; }
|
|
public long RoleId { get; set; }
|
|
}
|
|
|
|
public class UserMapper : SystemEntityTypeBuilder<User>
|
|
{
|
|
public UserMapper() : base("user")
|
|
{
|
|
|
|
}
|
|
}
|
|
} |