如洲 陈
7 天以前 6b3c4d87c500442f9774904c6a1117fe7cee5b5f
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
namespace MES.Service.Dto.webApi;
 
public class ErpItems
{
    //public string Id { get; set; }
    public string? Type { get; set; }
    public string FNumber { get; set; }
    public string? FName { get; set; }
    public string? FSpecification { get; set; }
    public string? FBaseUnitId { get; set; }
    public double? FSafeStock { get; set; }
    public double? FMaxStock { get; set; }
    public double? FMinPackCount { get; set; }
    public string? FStockId { get; set; }
    public string? PPBOM00019124 { get; set; }
    public string? FMaterialGroup { get; set; }
    public string? FDescription { get; set; }
    public decimal? FFinishReceiptOverRate { get; set; }
    public string? FIssueType { get; set; }
    public string? FIsBatchManage { get; set; }
    public string? FPurchaserId { get; set; }
    public string? FPurchaseUnitId { get; set; }
    public string? FStoreUnitID { get; set; }
    public string? FSaleUnitId { get; set; }
    public string? FForbidStatus { get; set; }
    public string? FErpClsID { get; set; }
    public string? FWorkShopId { get; set; }
 
    public string? FPRODUCEUNITID { get; set; }
    public string? FSUBCONUNITID { get; set; }
 
    public string? Inspectionmethod { get; set; }
 
    public string? Expirationdate { get; set; }
    public string? Reviewperiod  { get; set; }
    public decimal? FLeadDays { get; set; }
    
    /// <summary>
    /// 自定义字段4 - 单价
    /// </summary>
    public string? FRemark4 { get; set; }
    
    /// <summary>
    /// 自定义字段5
    /// </summary>
    public string? FRemark5 { get; set; }
    
    /// <summary>
    /// 最小装箱数
    /// </summary>
    public double? FMinPackageQty { get; set; }
    
    /// <summary>
    /// 责任部门
    /// </summary>
    public string? FDeportCode { get; set; }
}