移动系统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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace cylsg.Model.ECTEModel
{
 
    /// <summary>
    /// 工作计划附件表
    /// </summary>   
    [Tenant("ECTESTOADB")]
    [SugarTable("Oa_WorkPlan_Attachment")]
    public class OaWorkPlanAttachment
        {
            /// <summary>
            /// 主键ID
            /// </summary>
            [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
            public int? Keyid { get; set; }
 
            /// <summary>
            /// 工作计划ID
            /// </summary>
            [SugarColumn(ColumnName = "OA_WorkPlanId")]
            public int? OA_WorkPlanId { get; set; }
 
            /// <summary>
            /// 附件 
            /// </summary>
            [SugarColumn(ColumnName = "PlanAttachment", Length = 500)]
            public string? PlanAttachment { get; set; }
 
        /// <summary>
        /// 附件类型   1是发票 2 是附件
        /// </summary>
        [SugarColumn(ColumnName = "AttachmentType")]
            public int? AttachmentType { get; set; }
 
            /// <summary>
            /// 创建时间
            /// </summary>
            [SugarColumn(ColumnName = "CreateTime")]
            public DateTime? CreateTime { get; set; }
 
            /// <summary>
            /// 操作员
            /// </summary>
            [SugarColumn(ColumnName = "Operator", Length = 20)]
            public string? Operator { get; set; }
        }
    
}