wankeda
2025-04-15 9bae33c85d698987a6c9cf8ba8edbe9497b101dc
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
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(DtCZTaskDetails), "任务信息")]
    public class DtCZTaskDetails : 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 = 255, IsNullable = true)]
        public string TaskDescription { get; set; }
 
        /// <summary>
        /// 任务终点地址
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string TaskEndAddress { get; set; }
 
        /// <summary>
        /// 物料类型
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string MaterialType { get; set; }
 
        /// <summary>
        /// 物料条码
        /// </summary>
        [SugarColumn(Length = 100, IsNullable = true)]
        public string MaterialBarCode { get; set; }
    }
}