小飞侠
2026-04-07 24494c18efba9c7fbc952e5af35b961d648e3ecd
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
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_WorkReminder")]
    public class OA_WorkReminder
    {
 
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "Keyid", IsPrimaryKey = true, IsIdentity = true)]
        public int Keyid { get; set; }
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "FirmId")]
        public Guid FirmId { get; set; } = new Guid("88B49967-D590-452C-93C6-0049A75FA5FF");
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "Content")]
        public string Content { get; set; } = null!;
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "Remender")]
        public string? Remender { get; set; }
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "RemenderObject")]
        public string? RemenderObject { get; set; }
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "RemenderType")]
        public int? RemenderType { get; set; } = 0;
 
        /// <summary>
        /// 备  注: 
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "RemenderDept")]
        public string? RemenderDept { get; set; } = "";
 
        /// <summary>
        /// 备  注:反馈时间
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "RemenderTime")]
        public DateTime? RemenderTime { get; set; }
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "Remark")]
        public string? Remark { get; set; } = "";
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "RemenderDelState")]
        public int? RemenderDelState { get; set; } = 0;
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "RemenderObjectDelState")]
        public int? RemenderObjectDelState { get; set; } = 0;
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "IsFinish")]
        public int? IsFinish { get; set; } = 0;
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "FeedBackContent")]
        public string? FeedBackContent { get; set; }
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "RemindState")]
        public int? RemindState { get; set; } = 0;
 
 
    }
 
 
}