yl
2025-11-17 8d46fbb3dcdc7831757800ae78f5aabaac1d4195
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
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
 
namespace VueWebCoreApi.Models.InventoryModel
{
    public class StorageRecord
    {
        /// <summary>
        /// 入库单号
        /// </summary>
        public string hbillno { get; set; }
        /// <summary>
        /// 销售单号
        /// </summary>
        public string salecode { get; set; }
        /// <summary>
        /// 订单号
        /// </summary>
        public string mo_no { get; set; }
        /// <summary>
        /// 工单号
        /// </summary>
        public string wocode { get; set; }
        /// <summary>
        /// 产品编码
        /// </summary>
        public string partcode { get; set; }
        /// <summary>
        /// 入库数量
        /// </summary>
        public string qty { get; set; }
        /// <summary>
        /// 车间编码
        /// </summary>
        public string wkshop_code { get; set; }
        /// <summary>
        /// 仓库编码
        /// </summary>
        public string stockcode { get; set; }
        /// <summary>
        /// 条码
        /// </summary>
        public string inbarcode { get; set; }
        /// <summary>
        /// 工序编码
        /// </summary>
        public string step_code { get; set; }
        /// <summary>
        /// 报工类型(B:自制/S外协)
        /// </summary>
        public string style { get; set; }
        /// <summary>
        /// 末道工序报工记录id
        /// </summary>
        public string repoid { get; set; }
    }
}