|
|
@ -9,205 +9,856 @@ import java.time.LocalDateTime;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
|
|
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 发票 Excel VO
|
|
|
|
* 发票 Excel VO
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @author 芋道源码
|
|
|
|
* @author 芋道源码
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
|
|
|
|
public class InvoicesExcelVO {
|
|
|
|
public class InvoicesExcelVO {
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("发票id")
|
|
|
|
@ExcelProperty(value = "发票id", index = 0)
|
|
|
|
private Long id;
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("凭证id,一个凭证对应多个电子发票")
|
|
|
|
@ExcelProperty(value = "凭证id,一个凭证对应多个电子发票",index = 1)
|
|
|
|
private Long voucherId;
|
|
|
|
private Long voucherId;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("发票代码")
|
|
|
|
@ExcelProperty(value = "发票代码",index = 2)
|
|
|
|
private String invoiceCode;
|
|
|
|
private String invoiceCode;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("发票号码")
|
|
|
|
@ExcelProperty(value = "发票号码", index = 3)
|
|
|
|
private String invoiceNum;
|
|
|
|
private String invoiceNum;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("大写金额")
|
|
|
|
@ExcelProperty(value = "大写金额", index = 4)
|
|
|
|
private String amountinWords;
|
|
|
|
private String amountinWords;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("单价")
|
|
|
|
@ExcelProperty(value = "单价", index = 5)
|
|
|
|
private String price;
|
|
|
|
private String price;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("合计税额")
|
|
|
|
@ExcelProperty(value = "合计税额", index = 6)
|
|
|
|
private String totalTax;
|
|
|
|
private String totalTax;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("税率")
|
|
|
|
@ExcelProperty(value = "税率", index = 7)
|
|
|
|
private String taxRate;
|
|
|
|
private String taxRate;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("金额")
|
|
|
|
@ExcelProperty(value = "金额", index = 8)
|
|
|
|
private String totalAmount;
|
|
|
|
private String totalAmount;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("税额")
|
|
|
|
@ExcelProperty(value = "税额", index = 9)
|
|
|
|
private String commodityTax;
|
|
|
|
private String commodityTax;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("价税合计")
|
|
|
|
@ExcelProperty(value = "价税合计", index = 10)
|
|
|
|
private String commodityAmount;
|
|
|
|
private String commodityAmount;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("小写价税合计")
|
|
|
|
@ExcelProperty(value = "小写价税合计", index = 11)
|
|
|
|
private String amountinFiguers;
|
|
|
|
private String amountinFiguers;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("开票人")
|
|
|
|
@ExcelProperty(value = "开票人", index = 12)
|
|
|
|
private String foteDrawer;
|
|
|
|
private String foteDrawer;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("销方地址电话")
|
|
|
|
@ExcelProperty(value = "销方地址电话", index = 13)
|
|
|
|
private String sellerAddress;
|
|
|
|
private String sellerAddress;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("服务条数")
|
|
|
|
@ExcelProperty(value = "服务条数", index = 14)
|
|
|
|
private String commodityNum;
|
|
|
|
private String commodityNum;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("销方纳税识别号")
|
|
|
|
@ExcelProperty(value = "销方纳税识别号", index = 15)
|
|
|
|
private String sellerRegisterNum;
|
|
|
|
private String sellerRegisterNum;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("报送状态")
|
|
|
|
@ExcelProperty(value = "报送状态", index = 16)
|
|
|
|
private String machineCode;
|
|
|
|
private String machineCode;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("备注")
|
|
|
|
@ExcelProperty(value = "备注", index = 17)
|
|
|
|
private String remarks;
|
|
|
|
private String remarks;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("销方开户行及账号")
|
|
|
|
@ExcelProperty(value = "销方开户行及账号", index = 18)
|
|
|
|
private String sellerBank;
|
|
|
|
private String sellerBank;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("校验码")
|
|
|
|
@ExcelProperty(value = "校验码", index = 19)
|
|
|
|
private String checkCode;
|
|
|
|
private String checkCode;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("开票日期")
|
|
|
|
@ExcelProperty(value = "开票日期", index = 20)
|
|
|
|
private LocalDateTime invoiceDate;
|
|
|
|
private LocalDateTime invoiceDate;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("购方税号")
|
|
|
|
@ExcelProperty(value = "购方税号", index = 21)
|
|
|
|
private String purchaserRegisterNum;
|
|
|
|
private String purchaserRegisterNum;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("清单标志")
|
|
|
|
@ExcelProperty(value = "清单标志", index = 22)
|
|
|
|
private String invoiceTypeOrg;
|
|
|
|
private String invoiceTypeOrg;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("密码区")
|
|
|
|
@ExcelProperty(value = "密码区", index = 23)
|
|
|
|
private String password;
|
|
|
|
private String password;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("打印标志")
|
|
|
|
@ExcelProperty(value = "打印标志", index = 24)
|
|
|
|
private String agent;
|
|
|
|
private String agent;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("购方开户行及账号")
|
|
|
|
@ExcelProperty(value = "购方开户行及账号", index = 25)
|
|
|
|
private String purchaserBank;
|
|
|
|
private String purchaserBank;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("复核人")
|
|
|
|
@ExcelProperty(value = "复核人", index = 26)
|
|
|
|
private String checker;
|
|
|
|
private String checker;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("城市")
|
|
|
|
@ExcelProperty(value = "城市", index = 27)
|
|
|
|
private String city;
|
|
|
|
private String city;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("购方公司名")
|
|
|
|
@ExcelProperty(value = "购方公司名", index = 28)
|
|
|
|
private String purchaserName;
|
|
|
|
private String purchaserName;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("规格型号")
|
|
|
|
@ExcelProperty(value = "规格型号", index = 29)
|
|
|
|
private String commodityType;
|
|
|
|
private String commodityType;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("报送日志")
|
|
|
|
@ExcelProperty(value = "报送日志", index = 30)
|
|
|
|
private String province;
|
|
|
|
private String province;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("发票种类")
|
|
|
|
@ExcelProperty(value = "发票种类", index = 31)
|
|
|
|
private String invoiceType;
|
|
|
|
private String invoiceType;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("发票联")
|
|
|
|
@ExcelProperty(value = "发票联", index = 32)
|
|
|
|
private String sheetNum;
|
|
|
|
private String sheetNum;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("购方地址电话")
|
|
|
|
@ExcelProperty(value = "购方地址电话", index = 33)
|
|
|
|
private String purchaserAddress;
|
|
|
|
private String purchaserAddress;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("部门")
|
|
|
|
@ExcelProperty(value = "部门", index = 34)
|
|
|
|
private String commodityUnit;
|
|
|
|
private String commodityUnit;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("收款人")
|
|
|
|
@ExcelProperty(value = "收款人", index = 35)
|
|
|
|
private String payee;
|
|
|
|
private String payee;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("主要商品名称")
|
|
|
|
@ExcelProperty(value = "主要商品名称", index = 36)
|
|
|
|
private String commodityName;
|
|
|
|
private String commodityName;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("销方名称")
|
|
|
|
@ExcelProperty(value = "销方名称", index = 37)
|
|
|
|
private String sellerName;
|
|
|
|
private String sellerName;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("审核状态0待审核1已审核2审核退回3未提交")
|
|
|
|
@ExcelProperty(value = "审核状态0待审核1已审核2审核退回3未提交", index = 38)
|
|
|
|
private Byte invoiceCheck;
|
|
|
|
private Byte invoiceCheck;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("是否印章0,1")
|
|
|
|
@ExcelProperty(value = "是否印章0,1", index = 39)
|
|
|
|
private Byte invoiceSeal;
|
|
|
|
private Byte invoiceSeal;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("发票综合代码")
|
|
|
|
@ExcelProperty(value = "发票综合代码", index = 40)
|
|
|
|
private String invoiceQrcode;
|
|
|
|
private String invoiceQrcode;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("发票综合号码")
|
|
|
|
@ExcelProperty(value = "发票综合号码", index = 41)
|
|
|
|
private String invoiceQrnum;
|
|
|
|
private String invoiceQrnum;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("二维码查验(1查询相符,0查验不符)")
|
|
|
|
@ExcelProperty(value = "二维码查验(1查询相符,0查验不符)", index = 42)
|
|
|
|
private Byte qrCheckCode;
|
|
|
|
private Byte qrCheckCode;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("发票状态1正常0作废")
|
|
|
|
@ExcelProperty(value = "发票状态1正常0作废", index = 43)
|
|
|
|
private Byte invoiceState;
|
|
|
|
private Byte invoiceState;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("作废日期")
|
|
|
|
@ExcelProperty(value = "作废日期", index = 44)
|
|
|
|
private LocalDateTime printNum;
|
|
|
|
private LocalDateTime printNum;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("进销项标识0进项1销项")
|
|
|
|
@ExcelProperty(value = "进销项标识0进项1销项", index = 45)
|
|
|
|
private Byte inoutMark;
|
|
|
|
private Byte inoutMark;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("作废标志0作废1启用")
|
|
|
|
@ExcelProperty(value = "作废标志0作废1启用", index = 46)
|
|
|
|
private String invalidMark;
|
|
|
|
private String invalidMark;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("重复标识0已查重1有重复")
|
|
|
|
@ExcelProperty(value = "重复标识0已查重1有重复", index = 47)
|
|
|
|
private Byte duplicateMark;
|
|
|
|
private Byte duplicateMark;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("验真0未验真1已验证")
|
|
|
|
@ExcelProperty(value = "验真0未验真1已验证", index = 48)
|
|
|
|
private Byte checkTrue;
|
|
|
|
private Byte checkTrue;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("加密")
|
|
|
|
@ExcelProperty(value = "加密", index = 49)
|
|
|
|
private String encrypt;
|
|
|
|
private String encrypt;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("制单人")
|
|
|
|
@ExcelProperty(value = "制单人", index = 50)
|
|
|
|
private String createBy;
|
|
|
|
private String createBy;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("创建时间")
|
|
|
|
@ExcelProperty(value = "创建时间", index = 51)
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("归档id,一个归档id对应多个发票")
|
|
|
|
@ExcelProperty(value = "归档id,一个归档id对应多个发票", index = 52)
|
|
|
|
private Long recordId;
|
|
|
|
private Long recordId;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("业务实体id")
|
|
|
|
@ExcelProperty(value = "业务实体id", index = 53)
|
|
|
|
private Long companyId;
|
|
|
|
private Long companyId;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("业务实体")
|
|
|
|
@ExcelProperty(value = "业务实体", index = 54)
|
|
|
|
private String company;
|
|
|
|
private String company;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("所属部门id")
|
|
|
|
@ExcelProperty(value = "所属部门id", index = 55)
|
|
|
|
private Long deptId;
|
|
|
|
private Long deptId;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("所属部门")
|
|
|
|
@ExcelProperty(value = "所属部门", index = 56)
|
|
|
|
private String deptName;
|
|
|
|
private String deptName;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("用户id")
|
|
|
|
@ExcelProperty(value = "用户id", index = 57)
|
|
|
|
private Long userId;
|
|
|
|
private Long userId;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("备注")
|
|
|
|
@ExcelProperty(value = "备注", index = 58)
|
|
|
|
private String remark;
|
|
|
|
private String remark;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("预留字段1")
|
|
|
|
@ExcelProperty(value = "预留字段1", index = 59)
|
|
|
|
private String attr1;
|
|
|
|
private String attr1;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("预留字段2")
|
|
|
|
@ExcelProperty(value = "预留字段2", index = 60)
|
|
|
|
private String attr2;
|
|
|
|
private String attr2;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("预留字段3")
|
|
|
|
@ExcelProperty(value = "预留字段3", index = 61)
|
|
|
|
private Integer attr3;
|
|
|
|
private Integer attr3;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("预留字段4")
|
|
|
|
@ExcelProperty(value = "预留字段4", index = 62)
|
|
|
|
private Integer attr4;
|
|
|
|
private Integer attr4;
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("归档状态")
|
|
|
|
@ExcelProperty(value = "归档状态", index = 63)
|
|
|
|
private String archiveState;
|
|
|
|
private String archiveState;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getId() {
|
|
|
|
|
|
|
|
return id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setId(Long id) {
|
|
|
|
|
|
|
|
this.id = id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getVoucherId() {
|
|
|
|
|
|
|
|
return voucherId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setVoucherId(Long voucherId) {
|
|
|
|
|
|
|
|
this.voucherId = voucherId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getInvoiceCode() {
|
|
|
|
|
|
|
|
return invoiceCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceCode(String invoiceCode) {
|
|
|
|
|
|
|
|
this.invoiceCode = invoiceCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getInvoiceNum() {
|
|
|
|
|
|
|
|
return invoiceNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceNum(String invoiceNum) {
|
|
|
|
|
|
|
|
this.invoiceNum = invoiceNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getAmountinWords() {
|
|
|
|
|
|
|
|
return amountinWords;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setAmountinWords(String amountinWords) {
|
|
|
|
|
|
|
|
this.amountinWords = amountinWords;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getPrice() {
|
|
|
|
|
|
|
|
return price;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPrice(String price) {
|
|
|
|
|
|
|
|
this.price = price;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getTotalTax() {
|
|
|
|
|
|
|
|
return totalTax;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setTotalTax(String totalTax) {
|
|
|
|
|
|
|
|
this.totalTax = totalTax;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getTaxRate() {
|
|
|
|
|
|
|
|
return taxRate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setTaxRate(String taxRate) {
|
|
|
|
|
|
|
|
this.taxRate = taxRate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getTotalAmount() {
|
|
|
|
|
|
|
|
return totalAmount;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setTotalAmount(String totalAmount) {
|
|
|
|
|
|
|
|
this.totalAmount = totalAmount;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCommodityTax() {
|
|
|
|
|
|
|
|
return commodityTax;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCommodityTax(String commodityTax) {
|
|
|
|
|
|
|
|
this.commodityTax = commodityTax;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCommodityAmount() {
|
|
|
|
|
|
|
|
return commodityAmount;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCommodityAmount(String commodityAmount) {
|
|
|
|
|
|
|
|
this.commodityAmount = commodityAmount;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getAmountinFiguers() {
|
|
|
|
|
|
|
|
return amountinFiguers;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setAmountinFiguers(String amountinFiguers) {
|
|
|
|
|
|
|
|
this.amountinFiguers = amountinFiguers;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getFoteDrawer() {
|
|
|
|
|
|
|
|
return foteDrawer;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setFoteDrawer(String foteDrawer) {
|
|
|
|
|
|
|
|
this.foteDrawer = foteDrawer;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getSellerAddress() {
|
|
|
|
|
|
|
|
return sellerAddress;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setSellerAddress(String sellerAddress) {
|
|
|
|
|
|
|
|
this.sellerAddress = sellerAddress;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCommodityNum() {
|
|
|
|
|
|
|
|
return commodityNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCommodityNum(String commodityNum) {
|
|
|
|
|
|
|
|
this.commodityNum = commodityNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getSellerRegisterNum() {
|
|
|
|
|
|
|
|
return sellerRegisterNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setSellerRegisterNum(String sellerRegisterNum) {
|
|
|
|
|
|
|
|
this.sellerRegisterNum = sellerRegisterNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getMachineCode() {
|
|
|
|
|
|
|
|
return machineCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setMachineCode(String machineCode) {
|
|
|
|
|
|
|
|
this.machineCode = machineCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getRemarks() {
|
|
|
|
|
|
|
|
return remarks;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setRemarks(String remarks) {
|
|
|
|
|
|
|
|
this.remarks = remarks;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getSellerBank() {
|
|
|
|
|
|
|
|
return sellerBank;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setSellerBank(String sellerBank) {
|
|
|
|
|
|
|
|
this.sellerBank = sellerBank;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCheckCode() {
|
|
|
|
|
|
|
|
return checkCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCheckCode(String checkCode) {
|
|
|
|
|
|
|
|
this.checkCode = checkCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public LocalDateTime getInvoiceDate() {
|
|
|
|
|
|
|
|
return invoiceDate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceDate(LocalDateTime invoiceDate) {
|
|
|
|
|
|
|
|
this.invoiceDate = invoiceDate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getPurchaserRegisterNum() {
|
|
|
|
|
|
|
|
return purchaserRegisterNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPurchaserRegisterNum(String purchaserRegisterNum) {
|
|
|
|
|
|
|
|
this.purchaserRegisterNum = purchaserRegisterNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getInvoiceTypeOrg() {
|
|
|
|
|
|
|
|
return invoiceTypeOrg;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceTypeOrg(String invoiceTypeOrg) {
|
|
|
|
|
|
|
|
this.invoiceTypeOrg = invoiceTypeOrg;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getPassword() {
|
|
|
|
|
|
|
|
return password;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPassword(String password) {
|
|
|
|
|
|
|
|
this.password = password;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getAgent() {
|
|
|
|
|
|
|
|
return agent;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setAgent(String agent) {
|
|
|
|
|
|
|
|
this.agent = agent;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getPurchaserBank() {
|
|
|
|
|
|
|
|
return purchaserBank;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPurchaserBank(String purchaserBank) {
|
|
|
|
|
|
|
|
this.purchaserBank = purchaserBank;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getChecker() {
|
|
|
|
|
|
|
|
return checker;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setChecker(String checker) {
|
|
|
|
|
|
|
|
this.checker = checker;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCity() {
|
|
|
|
|
|
|
|
return city;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCity(String city) {
|
|
|
|
|
|
|
|
this.city = city;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getPurchaserName() {
|
|
|
|
|
|
|
|
return purchaserName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPurchaserName(String purchaserName) {
|
|
|
|
|
|
|
|
this.purchaserName = purchaserName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCommodityType() {
|
|
|
|
|
|
|
|
return commodityType;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCommodityType(String commodityType) {
|
|
|
|
|
|
|
|
this.commodityType = commodityType;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getProvince() {
|
|
|
|
|
|
|
|
return province;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setProvince(String province) {
|
|
|
|
|
|
|
|
this.province = province;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getInvoiceType() {
|
|
|
|
|
|
|
|
return invoiceType;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceType(String invoiceType) {
|
|
|
|
|
|
|
|
this.invoiceType = invoiceType;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getSheetNum() {
|
|
|
|
|
|
|
|
return sheetNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setSheetNum(String sheetNum) {
|
|
|
|
|
|
|
|
this.sheetNum = sheetNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getPurchaserAddress() {
|
|
|
|
|
|
|
|
return purchaserAddress;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPurchaserAddress(String purchaserAddress) {
|
|
|
|
|
|
|
|
this.purchaserAddress = purchaserAddress;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCommodityUnit() {
|
|
|
|
|
|
|
|
return commodityUnit;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCommodityUnit(String commodityUnit) {
|
|
|
|
|
|
|
|
this.commodityUnit = commodityUnit;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getPayee() {
|
|
|
|
|
|
|
|
return payee;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPayee(String payee) {
|
|
|
|
|
|
|
|
this.payee = payee;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCommodityName() {
|
|
|
|
|
|
|
|
return commodityName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCommodityName(String commodityName) {
|
|
|
|
|
|
|
|
this.commodityName = commodityName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getSellerName() {
|
|
|
|
|
|
|
|
return sellerName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setSellerName(String sellerName) {
|
|
|
|
|
|
|
|
this.sellerName = sellerName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Byte getInvoiceCheck() {
|
|
|
|
|
|
|
|
return invoiceCheck;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceCheck(Byte invoiceCheck) {
|
|
|
|
|
|
|
|
this.invoiceCheck = invoiceCheck;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Byte getInvoiceSeal() {
|
|
|
|
|
|
|
|
return invoiceSeal;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceSeal(Byte invoiceSeal) {
|
|
|
|
|
|
|
|
this.invoiceSeal = invoiceSeal;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getInvoiceQrcode() {
|
|
|
|
|
|
|
|
return invoiceQrcode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceQrcode(String invoiceQrcode) {
|
|
|
|
|
|
|
|
this.invoiceQrcode = invoiceQrcode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getInvoiceQrnum() {
|
|
|
|
|
|
|
|
return invoiceQrnum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceQrnum(String invoiceQrnum) {
|
|
|
|
|
|
|
|
this.invoiceQrnum = invoiceQrnum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Byte getQrCheckCode() {
|
|
|
|
|
|
|
|
return qrCheckCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setQrCheckCode(Byte qrCheckCode) {
|
|
|
|
|
|
|
|
this.qrCheckCode = qrCheckCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Byte getInvoiceState() {
|
|
|
|
|
|
|
|
return invoiceState;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvoiceState(Byte invoiceState) {
|
|
|
|
|
|
|
|
this.invoiceState = invoiceState;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public LocalDateTime getPrintNum() {
|
|
|
|
|
|
|
|
return printNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPrintNum(LocalDateTime printNum) {
|
|
|
|
|
|
|
|
this.printNum = printNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Byte getInoutMark() {
|
|
|
|
|
|
|
|
return inoutMark;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInoutMark(Byte inoutMark) {
|
|
|
|
|
|
|
|
this.inoutMark = inoutMark;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getInvalidMark() {
|
|
|
|
|
|
|
|
return invalidMark;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setInvalidMark(String invalidMark) {
|
|
|
|
|
|
|
|
this.invalidMark = invalidMark;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Byte getDuplicateMark() {
|
|
|
|
|
|
|
|
return duplicateMark;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDuplicateMark(Byte duplicateMark) {
|
|
|
|
|
|
|
|
this.duplicateMark = duplicateMark;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Byte getCheckTrue() {
|
|
|
|
|
|
|
|
return checkTrue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCheckTrue(Byte checkTrue) {
|
|
|
|
|
|
|
|
this.checkTrue = checkTrue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getEncrypt() {
|
|
|
|
|
|
|
|
return encrypt;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setEncrypt(String encrypt) {
|
|
|
|
|
|
|
|
this.encrypt = encrypt;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCreateBy() {
|
|
|
|
|
|
|
|
return createBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCreateBy(String createBy) {
|
|
|
|
|
|
|
|
this.createBy = createBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public LocalDateTime getCreateTime() {
|
|
|
|
|
|
|
|
return createTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCreateTime(LocalDateTime createTime) {
|
|
|
|
|
|
|
|
this.createTime = createTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getRecordId() {
|
|
|
|
|
|
|
|
return recordId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setRecordId(Long recordId) {
|
|
|
|
|
|
|
|
this.recordId = recordId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getCompanyId() {
|
|
|
|
|
|
|
|
return companyId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCompanyId(Long companyId) {
|
|
|
|
|
|
|
|
this.companyId = companyId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCompany() {
|
|
|
|
|
|
|
|
return company;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCompany(String company) {
|
|
|
|
|
|
|
|
this.company = company;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getDeptId() {
|
|
|
|
|
|
|
|
return deptId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDeptId(Long deptId) {
|
|
|
|
|
|
|
|
this.deptId = deptId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getDeptName() {
|
|
|
|
|
|
|
|
return deptName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDeptName(String deptName) {
|
|
|
|
|
|
|
|
this.deptName = deptName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getUserId() {
|
|
|
|
|
|
|
|
return userId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setUserId(Long userId) {
|
|
|
|
|
|
|
|
this.userId = userId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getRemark() {
|
|
|
|
|
|
|
|
return remark;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setRemark(String remark) {
|
|
|
|
|
|
|
|
this.remark = remark;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getAttr1() {
|
|
|
|
|
|
|
|
return attr1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setAttr1(String attr1) {
|
|
|
|
|
|
|
|
this.attr1 = attr1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getAttr2() {
|
|
|
|
|
|
|
|
return attr2;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setAttr2(String attr2) {
|
|
|
|
|
|
|
|
this.attr2 = attr2;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getAttr3() {
|
|
|
|
|
|
|
|
return attr3;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setAttr3(Integer attr3) {
|
|
|
|
|
|
|
|
this.attr3 = attr3;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getAttr4() {
|
|
|
|
|
|
|
|
return attr4;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setAttr4(Integer attr4) {
|
|
|
|
|
|
|
|
this.attr4 = attr4;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getArchiveState() {
|
|
|
|
|
|
|
|
return archiveState;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setArchiveState(String archiveState) {
|
|
|
|
|
|
|
|
this.archiveState = archiveState;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public InvoicesExcelVO(){};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public InvoicesExcelVO(Long id, Long voucherId, String invoiceCode, String invoiceNum, String amountinWords, String price, String totalTax, String taxRate, String totalAmount, String commodityTax, String commodityAmount, String amountinFiguers, String foteDrawer, String sellerAddress, String commodityNum, String sellerRegisterNum, String machineCode, String remarks, String sellerBank, String checkCode, LocalDateTime invoiceDate, String purchaserRegisterNum, String invoiceTypeOrg, String password, String agent, String purchaserBank, String checker, String city, String purchaserName, String commodityType, String province, String invoiceType, String sheetNum, String purchaserAddress, String commodityUnit, String payee, String commodityName, String sellerName, Byte invoiceCheck, Byte invoiceSeal, String invoiceQrcode, String invoiceQrnum, Byte qrCheckCode, Byte invoiceState, LocalDateTime printNum, Byte inoutMark, String invalidMark, Byte duplicateMark, Byte checkTrue, String encrypt, String createBy, LocalDateTime createTime, Long recordId, Long companyId, String company, Long deptId, String deptName, Long userId, String remark, String attr1, String attr2, Integer attr3, Integer attr4, String archiveState) {
|
|
|
|
|
|
|
|
this.id = id;
|
|
|
|
|
|
|
|
this.voucherId = voucherId;
|
|
|
|
|
|
|
|
this.invoiceCode = invoiceCode;
|
|
|
|
|
|
|
|
this.invoiceNum = invoiceNum;
|
|
|
|
|
|
|
|
this.amountinWords = amountinWords;
|
|
|
|
|
|
|
|
this.price = price;
|
|
|
|
|
|
|
|
this.totalTax = totalTax;
|
|
|
|
|
|
|
|
this.taxRate = taxRate;
|
|
|
|
|
|
|
|
this.totalAmount = totalAmount;
|
|
|
|
|
|
|
|
this.commodityTax = commodityTax;
|
|
|
|
|
|
|
|
this.commodityAmount = commodityAmount;
|
|
|
|
|
|
|
|
this.amountinFiguers = amountinFiguers;
|
|
|
|
|
|
|
|
this.foteDrawer = foteDrawer;
|
|
|
|
|
|
|
|
this.sellerAddress = sellerAddress;
|
|
|
|
|
|
|
|
this.commodityNum = commodityNum;
|
|
|
|
|
|
|
|
this.sellerRegisterNum = sellerRegisterNum;
|
|
|
|
|
|
|
|
this.machineCode = machineCode;
|
|
|
|
|
|
|
|
this.remarks = remarks;
|
|
|
|
|
|
|
|
this.sellerBank = sellerBank;
|
|
|
|
|
|
|
|
this.checkCode = checkCode;
|
|
|
|
|
|
|
|
this.invoiceDate = invoiceDate;
|
|
|
|
|
|
|
|
this.purchaserRegisterNum = purchaserRegisterNum;
|
|
|
|
|
|
|
|
this.invoiceTypeOrg = invoiceTypeOrg;
|
|
|
|
|
|
|
|
this.password = password;
|
|
|
|
|
|
|
|
this.agent = agent;
|
|
|
|
|
|
|
|
this.purchaserBank = purchaserBank;
|
|
|
|
|
|
|
|
this.checker = checker;
|
|
|
|
|
|
|
|
this.city = city;
|
|
|
|
|
|
|
|
this.purchaserName = purchaserName;
|
|
|
|
|
|
|
|
this.commodityType = commodityType;
|
|
|
|
|
|
|
|
this.province = province;
|
|
|
|
|
|
|
|
this.invoiceType = invoiceType;
|
|
|
|
|
|
|
|
this.sheetNum = sheetNum;
|
|
|
|
|
|
|
|
this.purchaserAddress = purchaserAddress;
|
|
|
|
|
|
|
|
this.commodityUnit = commodityUnit;
|
|
|
|
|
|
|
|
this.payee = payee;
|
|
|
|
|
|
|
|
this.commodityName = commodityName;
|
|
|
|
|
|
|
|
this.sellerName = sellerName;
|
|
|
|
|
|
|
|
this.invoiceCheck = invoiceCheck;
|
|
|
|
|
|
|
|
this.invoiceSeal = invoiceSeal;
|
|
|
|
|
|
|
|
this.invoiceQrcode = invoiceQrcode;
|
|
|
|
|
|
|
|
this.invoiceQrnum = invoiceQrnum;
|
|
|
|
|
|
|
|
this.qrCheckCode = qrCheckCode;
|
|
|
|
|
|
|
|
this.invoiceState = invoiceState;
|
|
|
|
|
|
|
|
this.printNum = printNum;
|
|
|
|
|
|
|
|
this.inoutMark = inoutMark;
|
|
|
|
|
|
|
|
this.invalidMark = invalidMark;
|
|
|
|
|
|
|
|
this.duplicateMark = duplicateMark;
|
|
|
|
|
|
|
|
this.checkTrue = checkTrue;
|
|
|
|
|
|
|
|
this.encrypt = encrypt;
|
|
|
|
|
|
|
|
this.createBy = createBy;
|
|
|
|
|
|
|
|
this.createTime = createTime;
|
|
|
|
|
|
|
|
this.recordId = recordId;
|
|
|
|
|
|
|
|
this.companyId = companyId;
|
|
|
|
|
|
|
|
this.company = company;
|
|
|
|
|
|
|
|
this.deptId = deptId;
|
|
|
|
|
|
|
|
this.deptName = deptName;
|
|
|
|
|
|
|
|
this.userId = userId;
|
|
|
|
|
|
|
|
this.remark = remark;
|
|
|
|
|
|
|
|
this.attr1 = attr1;
|
|
|
|
|
|
|
|
this.attr2 = attr2;
|
|
|
|
|
|
|
|
this.attr3 = attr3;
|
|
|
|
|
|
|
|
this.attr4 = attr4;
|
|
|
|
|
|
|
|
this.archiveState = archiveState;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
|
|
|
|
return "InvoicesExcelVO{" +
|
|
|
|
|
|
|
|
"id=" + id +
|
|
|
|
|
|
|
|
", voucherId=" + voucherId +
|
|
|
|
|
|
|
|
", invoiceCode='" + invoiceCode + '\'' +
|
|
|
|
|
|
|
|
", invoiceNum='" + invoiceNum + '\'' +
|
|
|
|
|
|
|
|
", amountinWords='" + amountinWords + '\'' +
|
|
|
|
|
|
|
|
", price='" + price + '\'' +
|
|
|
|
|
|
|
|
", totalTax='" + totalTax + '\'' +
|
|
|
|
|
|
|
|
", taxRate='" + taxRate + '\'' +
|
|
|
|
|
|
|
|
", totalAmount='" + totalAmount + '\'' +
|
|
|
|
|
|
|
|
", commodityTax='" + commodityTax + '\'' +
|
|
|
|
|
|
|
|
", commodityAmount='" + commodityAmount + '\'' +
|
|
|
|
|
|
|
|
", amountinFiguers='" + amountinFiguers + '\'' +
|
|
|
|
|
|
|
|
", foteDrawer='" + foteDrawer + '\'' +
|
|
|
|
|
|
|
|
", sellerAddress='" + sellerAddress + '\'' +
|
|
|
|
|
|
|
|
", commodityNum='" + commodityNum + '\'' +
|
|
|
|
|
|
|
|
", sellerRegisterNum='" + sellerRegisterNum + '\'' +
|
|
|
|
|
|
|
|
", machineCode='" + machineCode + '\'' +
|
|
|
|
|
|
|
|
", remarks='" + remarks + '\'' +
|
|
|
|
|
|
|
|
", sellerBank='" + sellerBank + '\'' +
|
|
|
|
|
|
|
|
", checkCode='" + checkCode + '\'' +
|
|
|
|
|
|
|
|
", invoiceDate=" + invoiceDate +
|
|
|
|
|
|
|
|
", purchaserRegisterNum='" + purchaserRegisterNum + '\'' +
|
|
|
|
|
|
|
|
", invoiceTypeOrg='" + invoiceTypeOrg + '\'' +
|
|
|
|
|
|
|
|
", password='" + password + '\'' +
|
|
|
|
|
|
|
|
", agent='" + agent + '\'' +
|
|
|
|
|
|
|
|
", purchaserBank='" + purchaserBank + '\'' +
|
|
|
|
|
|
|
|
", checker='" + checker + '\'' +
|
|
|
|
|
|
|
|
", city='" + city + '\'' +
|
|
|
|
|
|
|
|
", purchaserName='" + purchaserName + '\'' +
|
|
|
|
|
|
|
|
", commodityType='" + commodityType + '\'' +
|
|
|
|
|
|
|
|
", province='" + province + '\'' +
|
|
|
|
|
|
|
|
", invoiceType='" + invoiceType + '\'' +
|
|
|
|
|
|
|
|
", sheetNum='" + sheetNum + '\'' +
|
|
|
|
|
|
|
|
", purchaserAddress='" + purchaserAddress + '\'' +
|
|
|
|
|
|
|
|
", commodityUnit='" + commodityUnit + '\'' +
|
|
|
|
|
|
|
|
", payee='" + payee + '\'' +
|
|
|
|
|
|
|
|
", commodityName='" + commodityName + '\'' +
|
|
|
|
|
|
|
|
", sellerName='" + sellerName + '\'' +
|
|
|
|
|
|
|
|
", invoiceCheck=" + invoiceCheck +
|
|
|
|
|
|
|
|
", invoiceSeal=" + invoiceSeal +
|
|
|
|
|
|
|
|
", invoiceQrcode='" + invoiceQrcode + '\'' +
|
|
|
|
|
|
|
|
", invoiceQrnum='" + invoiceQrnum + '\'' +
|
|
|
|
|
|
|
|
", qrCheckCode=" + qrCheckCode +
|
|
|
|
|
|
|
|
", invoiceState=" + invoiceState +
|
|
|
|
|
|
|
|
", printNum=" + printNum +
|
|
|
|
|
|
|
|
", inoutMark=" + inoutMark +
|
|
|
|
|
|
|
|
", invalidMark='" + invalidMark + '\'' +
|
|
|
|
|
|
|
|
", duplicateMark=" + duplicateMark +
|
|
|
|
|
|
|
|
", checkTrue=" + checkTrue +
|
|
|
|
|
|
|
|
", encrypt='" + encrypt + '\'' +
|
|
|
|
|
|
|
|
", createBy='" + createBy + '\'' +
|
|
|
|
|
|
|
|
", createTime=" + createTime +
|
|
|
|
|
|
|
|
", recordId=" + recordId +
|
|
|
|
|
|
|
|
", companyId=" + companyId +
|
|
|
|
|
|
|
|
", company='" + company + '\'' +
|
|
|
|
|
|
|
|
", deptId=" + deptId +
|
|
|
|
|
|
|
|
", deptName='" + deptName + '\'' +
|
|
|
|
|
|
|
|
", userId=" + userId +
|
|
|
|
|
|
|
|
", remark='" + remark + '\'' +
|
|
|
|
|
|
|
|
", attr1='" + attr1 + '\'' +
|
|
|
|
|
|
|
|
", attr2='" + attr2 + '\'' +
|
|
|
|
|
|
|
|
", attr3=" + attr3 +
|
|
|
|
|
|
|
|
", attr4=" + attr4 +
|
|
|
|
|
|
|
|
", archiveState='" + archiveState + '\'' +
|
|
|
|
|
|
|
|
'}';
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|