Tjiny
2025-05-19 e07896ea2d4d7cbe2b351c35db37939cadce8c70
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
using System.Collections.Generic;
 
namespace HH.WCS.Mobox3.HaiCheng.Entity.Dto
{
    /// <summary>
    /// 四向车取消/强制完成订单模板
    /// </summary>
    public class FourWayCarCommanDto
    {
        /// <summary>
        /// 取消的订单id
        /// </summary>
        public List<int> order_id_list { get; set; }
        
        /// <summary>
        /// 取消的订单名称
        /// </summary>
        public List<string> order_name_list { get; set; }
 
        /// <summary>
        /// 任务类型(cancel:取消、force_complete:强制完成)
        /// </summary>
        public string command_type { get; set; }
 
        /// <summary>
        /// 扩展字段
        /// </summary>
        public string parameters { get; set; }
    }
}