移动系统liao
2025-02-08 479b6cfc60113f692f6f9146bcd7b9231a32b0e8
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace cylsg.Model.ECTEModel
{
    /// <summary>
    /// 办公系统厂商员工角色表
    /// </summary>
    [SugarTable("OA_FirmRole")]
    [Tenant("ECTESTOADB")]
    public class OA_FirmRole
    {
        /// <summary>
        /// 信息编号
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int Keyid { get; set; }
 
        /// <summary>
        /// 所属厂商编号
        /// </summary>
        [SugarColumn(IsNullable = false)]
        public Guid FirmId { get; set; }
 
        /// <summary>
        /// 角色名称
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDataType = "varchar(20)")]
        public string RoleName { get; set; }
 
        /// <summary>
        /// 是否有效
        /// </summary>
        [SugarColumn(IsNullable = false)]
        public bool IsUsed { get; set; }
 
        /// <summary>
        /// 最后修改时间
        /// </summary>
        [SugarColumn(IsNullable = false)]
        public DateTime LastUpdateTime { get; set; }
 
        /// <summary>
        /// 操作人
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDataType = "varchar(20)")]
        public string Operator { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
        public string Remark { get; set; }
    }
}