李白
9 天以前 08095d9847f0cd612c3007f860e57e967278562e
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package com.by4cloud.platformx.business.entity.invoice.vo;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
//应收表体
@Data
public class BIPYsItem {
 
    //                                                                        是否必填
    private String id; // 收款单子表 id
    private String _status="Insert"; // 收款单子表 id
    private String orgCurrency;// 表体行币种 id
//    private String oriCurrencyCode="CNY";//币种简称
//    private String exchangeRateType="01";//汇率类型 id
//    private String exchangeRateDate;// 汇率日期
//    private String exchangeRate="1";// 汇率
    private String oriCurrencyCode="CNY";//币种编码
    private String exchangeRateTypeCode;//汇率类型
    private String exchangeRateDate;//汇率日期
    private Double exchangeRate;//汇率
    private String orgCurrencyCode="CNY";//币种编码
    private Double taxRate;//税率
    private BigDecimal localTaxAmount;// 税额
    private BigDecimal oriTaxExcludedAmount;// 原币无税金额
 
    private String zzbkfl_code;//板块
    private BigDecimal oriTaxIncludedAmount; //原币含税金额
    private String objectType;// 表体行币种 id
    private String customer;// 表体行币种 id
    private String customerCode;// 表体行币种 id
    private String supplierCode;//供应商
    private String employee;//员工 id
    private String employeeCode;//员工编码
    private String funder;//资金业务对象 id
    private String funderCode;//资金业务对象 id
    private BigDecimal localTaxExcludedAmount;//本币无税金额
    private BigDecimal localTaxIncludedAmount;//本币含税金额
    private BigDecimal oriTaxAmount;//税额
    private String dept;//部门ID
    private String deptCode;//部门编码
    private String agreement;//收款协议 id
    private BigDecimal agreementCode;//收款协议编码
    private BigDecimal quantity;//数量,传值时物料必传
    private String unitName;//单位
    private String unitCode;//单位
    private String material;//物料ID
    private String materialCode;//物料编码
    private String JT09_code="0101";//发票类型
    private String expenseItemCode;//经济事项
    private String staff;//业务员 id
    private String staffCode;//业务员编码
    private Double oriTaxExcludedPrice;//无税单价
    private Double oriTaxIncludedPrice;//含税单价
    private Double localTaxExcludedPrice;//本币无税单价
    private Double localTaxIncludedPrice;//本币含税单价
    private String project;//项目 id
    private String projectCode;//项目编码
    private Integer deductTaxType = 0;
    private Boolean blnDeductTax = true;
    private String invoiceNo;//发票号
    private String YSYF33;//发票号
    private String invoiceType = "01";//发票类型
    private String contractNo;//合同编号
 
    private Integer HTBMBT;//是否有合同0-否,1-是
 
 
    private BIPYsMx freeChId;
 
    private String remarks;
 
    private List<BIPPayPlan> grandsonItem;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
//    private String expenseItemName; // 经济事项                                     是
//    private String JT04; // 交易类型                                        是
//    private String JT06; // 款项明细
//    private String JT11; // 提缴方式            是
//    private String JT01; //业态
//    private String MX09; //运销系统煤种 档案
//    private String JT12; //物料名称 物料档案
//     private BigDecimal MX10; //水煤量
//    private BigDecimal MX11; //无税金额
//    private String MX12; //灰分级别
//    private String MX13; //水分
//    private String MX14; //硫分
//    private String MX15; //品种
//    private BigDecimal MX16; //折干量
//    private BigDecimal MX17; //标煤量
//    private BigDecimal MX18; //标煤量单价
//    private String unitName; //运销系统煤种
//    private String quantity; //运销系统煤种
//    private Double taxRate; //税率
//    private BigDecimal oriTaxAmount; //税额
//    private BigDecimal oriTaxExcludedPrice; //无税单价
//    private BigDecimal oriTaxExcludedAmount; //无税金额
//    private BigDecimal oriTaxIncludedPrice; //含税单价
//    private BigDecimal oriTaxIncludedAmount; //含税金额
 
//    private String invoiceType; // 发票类型
//    private String invoiceNo; // 发票号码
//    private String remarks; // 备注
 
 
}