username@email.com
2024-10-29 3f91a6737fc06b45461ce11eae5660cbbf766f7e
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
32
33
34
35
36
37
38
39
40
using System;
using System.Linq;
using System.Text;
using SqlSugar;
 
namespace EC_SeckillInfo
{
    ///<summary>
    ///办公系统员工角色关系表
    ///</summary>
    [SugarTable("OA_StaffRoleRel")]
    public partial class OA_StaffRoleRel
    {
           public OA_StaffRoleRel(){
 
 
           }
           /// <summary>
           /// Desc:所属厂商编号
           /// Default:
           /// Nullable:True
           /// </summary>           
           public Guid? FirmId {get;set;}
 
           /// <summary>
           /// Desc:员工编号
           /// Default:
           /// Nullable:False
           /// </summary>           
           public int StaffId {get;set;}
 
           /// <summary>
           /// Desc:角色编号
           /// Default:
           /// Nullable:False
           /// </summary>           
           public int RoleId {get;set;}
 
    }
}