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 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; // 备注 }