schangxiang@126.com
2025-08-05 04d10bce51a6272d02a4a0f1b05a4f64bf73f273
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
60
61
62
63
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace autuPrint.printService
{
  public  class labelEntity
    {
     
          /// <summary>
          /// 采购单号
          /// </summary>
          public string purchaseOrder { get; set; }
          /// <summary>
          /// 采购项号
          /// </summary>
          public string purchaseOrderItem { get; set; }
          /// <summary>
          /// 物料编号
          /// </summary>
          public string materailCode { get; set; }
          /// <summary>
          /// 跟踪号
          /// </summary>
          public string trackNumber { get; set; }
          /// <summary>
          /// 物料名称
          /// </summary>
          public string materarilName { get; set; }
          /// <summary>
          /// 数量
          /// </summary>
          public decimal quantity { get; set; }
          /// <summary>
          /// 单位
          /// </summary>
          public string Unit { get; set; }
          /// <summary>
          /// 销售单号
          /// </summary>
          public string saleCode { get; set; }
          /// <summary>
          /// 销售项号
          /// </summary>
          public string saleCodeItem { get; set; }
          /// <summary>
          /// 收货日期
          /// </summary>
          public DateTime receivDate { get; set; }
          /// <summary>
          /// 到期日期
          /// </summary>
          public DateTime expireDate { get; set; }
          /// <summary>
          /// 供应商名称
          /// </summary>
          public string supplierName { get; set; }
 
 
    }
}