1
wankeda
2025-03-01 9be217a8818bb94c0a873a340016432996e4f80f
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
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.MES
{
    /// <summary>
    /// 返工提库
    /// </summary>
    public class RworkTaskModel
    {
        /// <summary>
        /// 任务单号
        /// </summary>
        public string TaskNo {  get; set; }
        /// <summary>
        /// 产品编码
        /// </summary>
        public string ProductCode { get; set; }
        /// <summary>
        /// 产品名称
        /// </summary>
        public string ProductName { get; set; }
        /// <summary>
        /// 产品版本
        /// </summary>
        public string ProductVersion { get; set; }
        /// <summary>
        /// 周期
        /// </summary>
        public string DateCode { get; set; }
        /// <summary>
        /// 需求数量
        /// </summary>
        public float RequiredQuantity { get; set; }
        /// <summary>
        /// 工厂
        /// </summary>
        public string FactoryCode { get; set; }
        /// <summary>
        /// 销售订单
        /// </summary>
        public string SaleOrder { get; set; }
        /// <summary>
        /// 库存类型
        /// </summary>
        public int InventoryType { get; set; }
    }
}