1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| using System;
| using System.Linq;
| using System.Text;
| using SqlSugar;
|
| namespace DocumentServiceAPI.Model.cyDocumentModel
| {
| ///<summary>
| ///文档员工角色
| ///</summary>
| [SugarTable("Document_EmployeeRole")]
| public partial class Document_EmployeeRole
| {
|
| /// <summary>
| /// ID
| /// 默认值:
| /// 可空:False
| /// </summary>
| [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
| public int ID { get; set; }
| /// <summary>
| /// 员工ID
| /// </summary>
| public int? EmployeeId { get; set; }
| /// <summary>
| /// 角色类型
| /// </summary>
| public int? RoleType { get; set; }
| }
| }
|
|