移动系统liao
2025-01-22 20c735f3df81e9e0a8946c71344fe62ddcee9d87
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace cylsg.Model.utilityViewModel
{
    /// <summary>
    /// 川印权限模型
    /// </summary>
    public class ECTESTOAPermissions
    {
        /// <summary>
        /// 是否是司机
        /// </summary>
      
        public bool BF_IsDriver { get; set; }=false;
 
        /// <summary>
        /// 是否是配送管理员
        /// </summary>
       
        public bool BF_IsDeliverManage { get; set; } = false;
 
        /// <summary>
        /// 是否为报销主管
        /// </summary>
      
        public bool BF_IsBaoxiaozhuguan { get; set; } =false;
 
        /// <summary>
        /// 是否为报销经理
        /// </summary>       
        public bool BF_Isbaoxiaojingli { get; set; } = false;
        /// <summary>
        /// 财务
        /// </summary>
        public bool BF_IsCaiWu{ get; set; } = false;
        /// <summary>
        /// 员工ID
        /// </summary>
        public Guid? MemberId { get; set; }
 
        /// <summary>
        /// 员工KeyID
        /// </summary>
        public int KeyId { get; set; }
 
        /// <summary>
        /// 员工姓名
        /// </summary>
        public string? Name {  get; set; }
 
        /// <summary>
        /// 员工电话
        /// </summary>
        public string? MobieNum { get; set; }
 
        /// <summary>
        /// 职务名称
        /// </summary>
        public string? SM_Post { get; set; }
        /// <summary>
        /// 部门名称
        /// </summary>
        public string? DepartmentName {  get; set; }
 
        /// <summary>
        /// 部门名称
        /// </summary>
        public int ? DepartId { get; set; }
 
        
 
    }
}