123
duyongjia
2024-11-19 e9731a410b17ced27f18f10e488072cb2803fa18
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_TaskInfoService
{
    /// <summary>
    /// 任务完成回传MES实体类
    /// </summary>
    public class MESSendCMD
    {
        /// <summary>
        /// 任务类型 
        /// </summary>
        public int cmd { get; set; }
        /// <summary>
        /// 列
        /// </summary>
        public int task_id { get; set; }
        public int status { get; set; }
 
 
 
 
    }
}