14 lines
350 B
14 lines
350 B
using NFine.Domain.Entity.SystemManage;
|
|
using System.Data.Entity.ModelConfiguration;
|
|
|
|
namespace NFine.Mapping.SystemManage
|
|
{
|
|
public class UserLogOnMap : EntityTypeConfiguration<UserLogOnEntity>
|
|
{
|
|
public UserLogOnMap()
|
|
{
|
|
this.ToTable("Sys_SRM_UserLogOn");
|
|
this.HasKey(t => t.F_Id);
|
|
}
|
|
}
|
|
}
|