SingleReceipt.java
1.44 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
package com.huaheng.api.erp.domain;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.annotations.SerializedName;
import com.huaheng.api.erp.ExtSaveParam;
import lombok.Data;
import java.util.Date;
import java.util.List;
/**
 *
 *@author tzh
 */
@Data
public class SingleReceipt {
    /**
     * 备注
     */
    @SerializedName("FDescription")
    private String description;
//==============================
//==============================
//==============================
    /**
     * 单据类型
     */
    @SerializedName(value = "FBillType")
    private ConvertObj billType;
    /**
     * 日期
     */
    @SerializedName("FDate")
    private Date date;
    /**
     * 入库组织
     */
    @SerializedName("FStockOrgId")
    private ConvertObj stockOrgId;
    /**
     * 本位币
     */
    @SerializedName("FCurrId")
    private ConvertObj baseCurrId;
    /**
     * //货主类型
     */
    @SerializedName(value = "FOwnerTypeId0")
    private String ownerTypeIdHead="BD_OwnerOrg";
    /**
     * 货主
     */
    @SerializedName(value = "FOwnerId0")
    private ConvertObj ownerId0;
    /**
     * 生产组织
     */
    @SerializedName("FPrdOrgId")
    private ConvertObj prodOrgId;
    /**
     * 仓管员
     */
    @SerializedName("FSTOCKERID")
    private ConvertObj stockId;
    /**
     * 明细信息
     */
    @SerializedName("FEntity")
    private List<ReceiptBillEntity> entity;
}