using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ERP.Core.Entity
{
[Table("sys_user_role")]
public class SysUserRole
{
///
/// 用户Id
///
public long UserId { get; set; }
///
/// 角色Id
///
public long RoleId { get; set; }
}
}