using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using SqlSugar;
|
|
namespace cylsg.Model.ECTEModel
|
{
|
/// <summary>
|
/// 员工角色表
|
/// </summary>
|
[Tenant("ECTESTOADB")]
|
public class OA_StaffRoleRel
|
{
|
|
public Guid FirmId { get; set; }
|
|
public int StaffId { get; set; }
|
|
public int RoleId { get; set; }
|
}
|
}
|