1
dengjunjie
2026-01-21 0c407bdcf2a26d78d2b0740f74af209977f0e7ce
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO
{
    /// <summary>
    /// 更新凯乐士任务优先级
    /// </summary>
    public class UpdateGALAXISTaskGrade
    {
        /// <summary>
        /// 任务编号
        /// </summary>
        public string taskId { get; set; }
        /// <summary>
        /// 请求时间戳
        /// </summary>
        public string reportTime { get; set; }
        /// <summary>
        /// 任务库区
        /// </summary>
        public string district { get; set; }
        /// <summary>
        /// 新的优先级
        /// </summary>
        public int priorityCode { get; set; }
    }
}