jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
using HH.WMS.Entitys.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Basic
{
    /// <summary>
    /// 销售出库实体
    /// </summary>
    public class K3_SalesDeliveryEntity
     {
        public SalesDelivery_Data Data { get; set; }
    }
    public class SalesDelivery_Data
    {
        public List<SalesDelivery_Page1> Page1 { get; set; }
        public List<SalesDelivery_Page2> Page2 { get; set; }
 
    }
    public class SalesDelivery_Page1
    {
        //日期
        public string Fdate { get; set; }
        //销售业务类型
        public object FMarketingStyle { get; set; }
        //购货单位
        public object FSupplyID { get; set; }
        //销售方式
        public object FSaleStyle { get; set; }
        //编 号
        public string FBillNo { get; set; }
        //发货
        public object FFManagerID { get; set; }
        //保管
        public object FSManagerID { get; set; }
        //红蓝单标志
        public int FROB { get; set; }
        //审核标志
        public int FStatus { get; set; }
        //作废标志
        public int FCancellation { get; set; }
    }
 
    public class SalesDelivery_Page2
    {
        //发货仓库
        public object FDCStockID1 { get; set; }
        //产品代码
        public object FItemID { get; set; }
        //单位
        public object FUnitID { get; set; }
        //数量
        public string FQty { get; set; }
        //实收数量
        public string Fauxqty { get; set; }
        //计划模式
        public object FPlanMode { get; set; }
    }
}