schangxiang@126.com
2025-09-19 a68302033da081f9ad5e82268a01892c3e129cc1
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
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
 
namespace WIP_Models
{
    /// <summary> 
    /// 质检结果推送给WCS返回参数类
    /// </summary> 
  
    public class WCSqualityparameter
    {
        /// <summary>
        /// 系统编码
        /// </summary>
        public string sysCode { get; set; }
 
        /// <summary>
        /// 流转卡号
        /// </summary>
        public string processCardNumber { get; set; }
 
        /// <summary>
        /// 质检状态
        /// </summary>
        public string qaStatus { get; set; }
 
 
        /// <summary>
        /// 检测结果日期时间
        /// </summary>
        public string timestamp { get; set; }
 
 
    
 
 
    }
}