wanshenmean
2025-04-08 6d0ee85a6c0522f11036ec8c17c3dcb7ac8495da
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
 
namespace WIDESEAWCS_Model.Models
{
 
    [SugarTable(nameof(DtCZTask), "任务信息")]
    public class DtCZTask : BaseEntity
    {
        /// <summary>
        /// 主键ID
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int Id { get; set; }
 
        /// <summary>
        /// 任务名称
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskName { get; set; }
 
        /// <summary>
        /// 任务类型
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskType { get; set; }
 
        /// <summary>
        /// 任务状态
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskStatus { get; set; }
 
        /// <summary>
        /// 任务描述
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskDesc { get; set; }
 
        /// <summary>
        /// 任务开始日期
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public DateTime TaskStartDate { get; set; }
 
        /// <summary>
        /// 任务结束日期
        /// </summary>
        [SugarColumn( IsNullable = true)]
        public DateTime TaskEndDate { get; set; }
 
        /// <summary>
        /// 任务创建人
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskOwner { get; set; }
 
        /// <summary>
        /// 任务执行人
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskExecutor { get; set; }
 
        /// <summary>
        /// 任务产品代码
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskProductCode { get; set; }
 
        /// <summary>
        /// 任务订单号
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskOrderNo { get; set; }
 
        /// <summary>
        /// 任务数量
        /// </summary>
        [SugarColumn( IsNullable = true)]
        public int TaskNumber { get; set; }
 
        /// <summary>
        /// 任务唯一ID
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskTaskID { get; set; }
 
        /// <summary>
        /// 任务终点地址
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskEndAddress { get; set; }
 
        /// <summary>
        /// 任务正极完成数量
        /// </summary>
        [SugarColumn( IsNullable = true)]
        public int TaskZJFinishNumber { get; set; }
 
        /// <summary>
        /// 任务负极完成数量
        /// </summary>
        [SugarColumn( IsNullable = true)]
        public int TaskFJFinishNumber { get; set; }
    }
}