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.
20 lines
429 B
C#
20 lines
429 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Khd.Core.Domain.Auth
|
|
{
|
|
[Table("wcs_sys_user_role")]
|
|
public class SysRole
|
|
{
|
|
[Key]
|
|
[Column("OBJID")]
|
|
public long? OBJID { get; set; }
|
|
|
|
[Column("USER_ID")]
|
|
public long? UserId { get; set; }
|
|
|
|
[Column("ROLE_ID")]
|
|
public long? RoleId { get; set; }
|
|
}
|
|
}
|