wanshenmean
3 天以前 f7ec7a32e8cddcb976093c826e3a0d1ed61fb335
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO
{
    /// <summary>
    /// 更新任务状态DTO - 用于封装更新任务状态所需的数据,包括任务ID和新状态信息
    /// </summary>
    public class UpdateTaskDto
    {
        /// <summary>
        /// id - 任务ID,必填项,用于指定要更新的任务记录
        /// </summary>
        public int Id { get; set; }
 
        /// <summary>
        /// newStatus - 新状态,必填项,用于指定任务的新状态
        /// </summary>
        public int NewStatus { get; set; }
 
 
        /// <summary>
        /// NextAddress - 下一地址,必填项,用于指定任务的下一位置
        /// </summary>
        public string? NextAddress { get; set; }
 
        /// <summary>
        /// currentAddress - 当前地址,必填项,用于指定任务的当前位置
        /// </summary>
        public string? CurrentAddress { get; set; }
    }
}