using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace DocumentServiceAPI.Model.cyDocumentModel
{
///
///文档员工角色
///
[SugarTable("Document_EmployeeRole")]
public partial class Document_EmployeeRole
{
///
/// ID
/// 默认值:
/// 可空:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
///
/// 员工ID
///
public int? EmployeeId { get; set; }
///
/// 角色类型
///
public int? RoleType { get; set; }
}
}