You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
843 lines
18 KiB
843 lines
18 KiB
2 years ago
|
package com.jianshui.invoice.domain;
|
||
|
|
||
|
import java.math.BigDecimal;
|
||
|
import java.util.List;
|
||
|
import java.util.Date;
|
||
|
import java.util.Map;
|
||
|
|
||
|
import com.alibaba.fastjson.annotation.JSONField;
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||
|
import com.jianshui.common.annotation.Excel;
|
||
|
import com.jianshui.common.core.domain.BaseEntity;
|
||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||
|
|
||
|
/**
|
||
|
* 开票信息对象 bill_info
|
||
|
*
|
||
|
* @author Gong Quanlin
|
||
|
* @date 2022-03-27
|
||
|
*/
|
||
|
public class BillInfo extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** 主键ID */
|
||
|
private Long id;
|
||
|
|
||
|
/** 销方ID */
|
||
|
@Excel(name = "销方ID")
|
||
|
private Long companyId;
|
||
|
|
||
|
/** 本系统订单号 */
|
||
|
@Excel(name = "本系统订单号")
|
||
|
private String systemOrderno;
|
||
|
|
||
|
/** 客户系统订单号 */
|
||
|
@Excel(name = "客户系统订单号")
|
||
|
private String outTradeOrderno;
|
||
|
|
||
|
/** 流水号 */
|
||
|
@Excel(name = "流水号")
|
||
|
private String fpqqlsh;
|
||
|
|
||
|
/** 发票种类 */
|
||
|
@Excel(name = "发票种类")
|
||
|
private String invoiceType;
|
||
|
|
||
|
/** 购方名称 */
|
||
|
@Excel(name = "购方名称")
|
||
|
private String buyerName;
|
||
|
|
||
|
/** 购方税号 */
|
||
|
@Excel(name = "购方税号")
|
||
|
private String buyerTaxnum;
|
||
|
|
||
|
/** 购方地址 */
|
||
|
@Excel(name = "购方地址")
|
||
|
private String buyerAddress;
|
||
|
|
||
|
/** 购方电话 */
|
||
|
@Excel(name = "购方电话")
|
||
|
private String buyerTelephone;
|
||
|
|
||
|
/** 购货方开户行名称 */
|
||
|
@Excel(name = "购货方开户行名称")
|
||
|
private String buyerBank;
|
||
|
|
||
|
/** 购方开户行及账户 */
|
||
|
@Excel(name = "购方开户行及账户")
|
||
|
private String buyerAccount;
|
||
|
|
||
|
/** 购方邮箱 */
|
||
|
@Excel(name = "购方邮箱")
|
||
|
private String buyerEmail;
|
||
|
|
||
|
/** 购方联系电话 */
|
||
|
@Excel(name = "购方联系电话")
|
||
|
private String buyerPhone;
|
||
|
|
||
|
/** 销方名称 */
|
||
|
@Excel(name = "销方名称")
|
||
|
private String sellerName;
|
||
|
|
||
|
/** 销方税号 */
|
||
|
@Excel(name = "销方税号")
|
||
|
private String sellerTaxnum;
|
||
|
|
||
|
/** 销方地址 */
|
||
|
@Excel(name = "销方地址")
|
||
|
private String sellerAddress;
|
||
|
|
||
|
/** 销方电话 */
|
||
|
@Excel(name = "销方电话")
|
||
|
private String sellerTelephone;
|
||
|
|
||
|
/** 销方开户行及账户 */
|
||
|
@Excel(name = "销方开户行及账户")
|
||
|
private String sellerAccount;
|
||
|
|
||
|
/** 备注 */
|
||
|
@Excel(name = "备注")
|
||
|
private String message;
|
||
|
|
||
|
/** 销方开户行名称 */
|
||
|
@Excel(name = "销方开户行名称")
|
||
|
private String sellerBank;
|
||
|
|
||
|
/** 开票人 */
|
||
|
@Excel(name = "开票人")
|
||
|
private String clerk;
|
||
|
|
||
|
/** 收款人 */
|
||
|
@Excel(name = "收款人")
|
||
|
private String payee;
|
||
|
|
||
|
/** 复核人 */
|
||
|
@Excel(name = "复核人")
|
||
|
private String checker;
|
||
|
|
||
|
/** 红字信息表编号 */
|
||
|
@Excel(name = "红字信息表编号")
|
||
|
private String redInvoiceInfoCode;
|
||
|
|
||
|
/** 开票分机号 */
|
||
|
@Excel(name = "开票分机号")
|
||
|
private String fjh;
|
||
|
|
||
|
/** 开票终端号 */
|
||
|
@Excel(name = "开票终端号")
|
||
|
private String terminalNumber;
|
||
|
|
||
|
/** 开票类型 */
|
||
|
@Excel(name = "开票类型")
|
||
|
private String kptype;
|
||
|
|
||
|
/** 原billInfo订单号 */
|
||
|
@Excel(name = "原billInfo订单号")
|
||
|
private String originSystemOrderno;
|
||
|
|
||
|
/** 编码表编号 */
|
||
|
@Excel(name = "编码表编号")
|
||
|
private String bmbbh;
|
||
|
|
||
|
/** 原发票代码 */
|
||
|
@Excel(name = "原发票代码")
|
||
|
private String originFpdm;
|
||
|
|
||
|
/** 原发票号码 */
|
||
|
@Excel(name = "原发票号码")
|
||
|
private String originFphm;
|
||
|
|
||
|
/** 推送方式 */
|
||
|
@Excel(name = "推送方式")
|
||
|
private String tsfs;
|
||
|
|
||
|
/** 清单标志 */
|
||
|
@Excel(name = "清单标志")
|
||
|
private String qdbz;
|
||
|
|
||
|
/** 清单项目名称 */
|
||
|
@Excel(name = "清单项目名称")
|
||
|
private String qdxmmc;
|
||
|
|
||
|
/** 代开标志 */
|
||
|
@Excel(name = "代开标志")
|
||
|
private String dkbz;
|
||
|
|
||
|
/** 成品油标志 */
|
||
|
@Excel(name = "成品油标志")
|
||
|
private String cpybz;
|
||
|
|
||
|
/** 开票状态 */
|
||
|
@Excel(name = "开票状态")
|
||
|
private Integer state;
|
||
|
|
||
|
/** 订单来源 */
|
||
|
@Excel(name = "订单来源")
|
||
|
private String source;
|
||
|
|
||
|
/** 服务公司 */
|
||
|
@Excel(name = "服务公司")
|
||
|
private String serviceSupplierKey;
|
||
|
|
||
|
/** 单据类型 */
|
||
|
@Excel(name = "单据类型")
|
||
|
private String billType;
|
||
|
|
||
|
/** 业务留存字段 */
|
||
|
@Excel(name = "业务留存字段")
|
||
|
private String businessRemark;
|
||
|
|
||
|
/** 不含税金额 */
|
||
|
@Excel(name = "不含税金额")
|
||
|
private BigDecimal taxfreeamt;
|
||
|
|
||
|
/** 开票时间 */
|
||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||
|
@Excel(name = "开票时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||
|
private Date invoicedTime;
|
||
|
|
||
|
/** 税额 */
|
||
|
@Excel(name = "税额")
|
||
|
private BigDecimal tax;
|
||
|
|
||
|
/** 含税金额 */
|
||
|
@Excel(name = "含税金额")
|
||
|
private BigDecimal taxamt;
|
||
|
|
||
|
/** 删除标志 */
|
||
|
private Date deletedTime;
|
||
|
|
||
|
/** 发票明细信息 */
|
||
|
@TableField(exist = false)
|
||
|
private List<BillDetail> billDetailList;
|
||
|
|
||
|
@TableField(exist = false)
|
||
|
private String searchValue;
|
||
|
|
||
|
@TableField(exist = false)
|
||
|
private String remark;
|
||
|
|
||
|
@TableField(exist = false)
|
||
|
private Map<String, Object> params;
|
||
|
|
||
|
/** 回调地址 */
|
||
|
@Excel(name = "回调地址")
|
||
|
private String callbackUrl;
|
||
|
|
||
|
/** 经办人姓名 */
|
||
|
private String jbrxm;
|
||
|
/** 经办人证件号码 */
|
||
|
private String jbrzjhm;
|
||
|
/** 经办人证件种类代码 */
|
||
|
private String jbrzjzldm;
|
||
|
/** 经办人纳税人识别号 */
|
||
|
private String jrznsrsbh;
|
||
|
/** 价税合计 */
|
||
|
private String jshj;
|
||
|
/** 特定要素类型代码 */
|
||
|
private String tdyslxdm;
|
||
|
/** tdywxx金财数科字段 */
|
||
|
private String tdywxx;
|
||
|
/** ext金财数科字段 */
|
||
|
private String ext;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public String getSearchValue() {
|
||
|
return searchValue;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void setSearchValue(String searchValue) {
|
||
|
this.searchValue = searchValue;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getRemark() {
|
||
|
return remark;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void setRemark(String remark) {
|
||
|
this.remark = remark;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Map<String, Object> getParams() {
|
||
|
return params;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void setParams(Map<String, Object> params) {
|
||
|
this.params = params;
|
||
|
}
|
||
|
|
||
|
public String getJbrxm() {
|
||
|
return jbrxm;
|
||
|
}
|
||
|
|
||
|
public void setJbrxm(String jbrxm) {
|
||
|
this.jbrxm = jbrxm;
|
||
|
}
|
||
|
|
||
|
public String getJbrzjhm() {
|
||
|
return jbrzjhm;
|
||
|
}
|
||
|
|
||
|
public void setJbrzjhm(String jbrzjhm) {
|
||
|
this.jbrzjhm = jbrzjhm;
|
||
|
}
|
||
|
|
||
|
public String getJbrzjzldm() {
|
||
|
return jbrzjzldm;
|
||
|
}
|
||
|
|
||
|
public void setJbrzjzldm(String jbrzjzldm) {
|
||
|
this.jbrzjzldm = jbrzjzldm;
|
||
|
}
|
||
|
|
||
|
public String getJrznsrsbh() {
|
||
|
return jrznsrsbh;
|
||
|
}
|
||
|
|
||
|
public void setJrznsrsbh(String jrznsrsbh) {
|
||
|
this.jrznsrsbh = jrznsrsbh;
|
||
|
}
|
||
|
|
||
|
public String getJshj() {
|
||
|
return jshj;
|
||
|
}
|
||
|
|
||
|
public void setJshj(String jshj) {
|
||
|
this.jshj = jshj;
|
||
|
}
|
||
|
|
||
|
public String getTdyslxdm() {
|
||
|
return tdyslxdm;
|
||
|
}
|
||
|
|
||
|
public void setTdyslxdm(String tdyslxdm) {
|
||
|
this.tdyslxdm = tdyslxdm;
|
||
|
}
|
||
|
|
||
|
public String getTdywxx() {
|
||
|
return tdywxx;
|
||
|
}
|
||
|
|
||
|
public void setTdywxx(String tdywxx) {
|
||
|
this.tdywxx = tdywxx;
|
||
|
}
|
||
|
|
||
|
public String getExt() {
|
||
|
return ext;
|
||
|
}
|
||
|
|
||
|
public void setExt(String ext) {
|
||
|
this.ext = ext;
|
||
|
}
|
||
|
|
||
|
public void setId(Long id)
|
||
|
{
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public Long getId()
|
||
|
{
|
||
|
return id;
|
||
|
}
|
||
|
public void setCompanyId(Long companyId)
|
||
|
{
|
||
|
this.companyId = companyId;
|
||
|
}
|
||
|
|
||
|
public Long getCompanyId()
|
||
|
{
|
||
|
return companyId;
|
||
|
}
|
||
|
public void setSystemOrderno(String systemOrderno)
|
||
|
{
|
||
|
this.systemOrderno = systemOrderno;
|
||
|
}
|
||
|
|
||
|
public String getSystemOrderno()
|
||
|
{
|
||
|
return systemOrderno;
|
||
|
}
|
||
|
public void setOutTradeOrderno(String outTradeOrderno)
|
||
|
{
|
||
|
this.outTradeOrderno = outTradeOrderno;
|
||
|
}
|
||
|
|
||
|
public String getOutTradeOrderno()
|
||
|
{
|
||
|
return outTradeOrderno;
|
||
|
}
|
||
|
public void setFpqqlsh(String fpqqlsh)
|
||
|
{
|
||
|
this.fpqqlsh = fpqqlsh;
|
||
|
}
|
||
|
|
||
|
public String getFpqqlsh()
|
||
|
{
|
||
|
return fpqqlsh;
|
||
|
}
|
||
|
public void setInvoiceType(String invoiceType)
|
||
|
{
|
||
|
this.invoiceType = invoiceType;
|
||
|
}
|
||
|
|
||
|
public String getInvoiceType()
|
||
|
{
|
||
|
return invoiceType;
|
||
|
}
|
||
|
public void setBuyerName(String buyerName)
|
||
|
{
|
||
|
this.buyerName = buyerName;
|
||
|
}
|
||
|
|
||
|
public String getBuyerName()
|
||
|
{
|
||
|
return buyerName;
|
||
|
}
|
||
|
public void setBuyerTaxnum(String buyerTaxnum)
|
||
|
{
|
||
|
this.buyerTaxnum = buyerTaxnum;
|
||
|
}
|
||
|
|
||
|
public String getBuyerTaxnum()
|
||
|
{
|
||
|
return buyerTaxnum;
|
||
|
}
|
||
|
public void setBuyerAddress(String buyerAddress)
|
||
|
{
|
||
|
this.buyerAddress = buyerAddress;
|
||
|
}
|
||
|
|
||
|
public String getBuyerAddress()
|
||
|
{
|
||
|
return buyerAddress;
|
||
|
}
|
||
|
public void setBuyerTelephone(String buyerTelephone)
|
||
|
{
|
||
|
this.buyerTelephone = buyerTelephone;
|
||
|
}
|
||
|
|
||
|
public String getBuyerTelephone()
|
||
|
{
|
||
|
return buyerTelephone;
|
||
|
}
|
||
|
public void setBuyerBank(String buyerBank)
|
||
|
{
|
||
|
this.buyerBank = buyerBank;
|
||
|
}
|
||
|
|
||
|
public String getBuyerBank()
|
||
|
{
|
||
|
return buyerBank;
|
||
|
}
|
||
|
public void setBuyerAccount(String buyerAccount)
|
||
|
{
|
||
|
this.buyerAccount = buyerAccount;
|
||
|
}
|
||
|
|
||
|
public String getBuyerAccount()
|
||
|
{
|
||
|
return buyerAccount;
|
||
|
}
|
||
|
public void setBuyerEmail(String buyerEmail)
|
||
|
{
|
||
|
this.buyerEmail = buyerEmail;
|
||
|
}
|
||
|
|
||
|
public String getBuyerEmail()
|
||
|
{
|
||
|
return buyerEmail;
|
||
|
}
|
||
|
public void setBuyerPhone(String buyerPhone)
|
||
|
{
|
||
|
this.buyerPhone = buyerPhone;
|
||
|
}
|
||
|
|
||
|
public String getBuyerPhone()
|
||
|
{
|
||
|
return buyerPhone;
|
||
|
}
|
||
|
public void setSellerName(String sellerName)
|
||
|
{
|
||
|
this.sellerName = sellerName;
|
||
|
}
|
||
|
|
||
|
public String getSellerName()
|
||
|
{
|
||
|
return sellerName;
|
||
|
}
|
||
|
public void setSellerTaxnum(String sellerTaxnum)
|
||
|
{
|
||
|
this.sellerTaxnum = sellerTaxnum;
|
||
|
}
|
||
|
|
||
|
public String getSellerTaxnum()
|
||
|
{
|
||
|
return sellerTaxnum;
|
||
|
}
|
||
|
public void setSellerAddress(String sellerAddress)
|
||
|
{
|
||
|
this.sellerAddress = sellerAddress;
|
||
|
}
|
||
|
|
||
|
public String getSellerAddress()
|
||
|
{
|
||
|
return sellerAddress;
|
||
|
}
|
||
|
public void setSellerTelephone(String sellerTelephone)
|
||
|
{
|
||
|
this.sellerTelephone = sellerTelephone;
|
||
|
}
|
||
|
|
||
|
public String getSellerTelephone()
|
||
|
{
|
||
|
return sellerTelephone;
|
||
|
}
|
||
|
public void setSellerAccount(String sellerAccount)
|
||
|
{
|
||
|
this.sellerAccount = sellerAccount;
|
||
|
}
|
||
|
|
||
|
public String getSellerAccount()
|
||
|
{
|
||
|
return sellerAccount;
|
||
|
}
|
||
|
public void setMessage(String message)
|
||
|
{
|
||
|
this.message = message;
|
||
|
}
|
||
|
|
||
|
public String getMessage()
|
||
|
{
|
||
|
return message;
|
||
|
}
|
||
|
public void setSellerBank(String sellerBank)
|
||
|
{
|
||
|
this.sellerBank = sellerBank;
|
||
|
}
|
||
|
|
||
|
public String getSellerBank()
|
||
|
{
|
||
|
return sellerBank;
|
||
|
}
|
||
|
public void setClerk(String clerk)
|
||
|
{
|
||
|
this.clerk = clerk;
|
||
|
}
|
||
|
|
||
|
public String getClerk()
|
||
|
{
|
||
|
return clerk;
|
||
|
}
|
||
|
public void setPayee(String payee)
|
||
|
{
|
||
|
this.payee = payee;
|
||
|
}
|
||
|
|
||
|
public String getPayee()
|
||
|
{
|
||
|
return payee;
|
||
|
}
|
||
|
public void setChecker(String checker)
|
||
|
{
|
||
|
this.checker = checker;
|
||
|
}
|
||
|
|
||
|
public String getChecker()
|
||
|
{
|
||
|
return checker;
|
||
|
}
|
||
|
public void setRedInvoiceInfoCode(String redInvoiceInfoCode)
|
||
|
{
|
||
|
this.redInvoiceInfoCode = redInvoiceInfoCode;
|
||
|
}
|
||
|
|
||
|
public String getRedInvoiceInfoCode()
|
||
|
{
|
||
|
return redInvoiceInfoCode;
|
||
|
}
|
||
|
public void setFjh(String fjh)
|
||
|
{
|
||
|
this.fjh = fjh;
|
||
|
}
|
||
|
|
||
|
public String getFjh()
|
||
|
{
|
||
|
return fjh;
|
||
|
}
|
||
|
public void setTerminalNumber(String terminalNumber)
|
||
|
{
|
||
|
this.terminalNumber = terminalNumber;
|
||
|
}
|
||
|
|
||
|
public String getTerminalNumber()
|
||
|
{
|
||
|
return terminalNumber;
|
||
|
}
|
||
|
public void setKptype(String kptype)
|
||
|
{
|
||
|
this.kptype = kptype;
|
||
|
}
|
||
|
|
||
|
public String getKptype()
|
||
|
{
|
||
|
return kptype;
|
||
|
}
|
||
|
public void setOriginSystemOrderno(String originSystemOrderno)
|
||
|
{
|
||
|
this.originSystemOrderno = originSystemOrderno;
|
||
|
}
|
||
|
|
||
|
public String getOriginSystemOrderno()
|
||
|
{
|
||
|
return originSystemOrderno;
|
||
|
}
|
||
|
public void setBmbbh(String bmbbh)
|
||
|
{
|
||
|
this.bmbbh = bmbbh;
|
||
|
}
|
||
|
|
||
|
public String getBmbbh()
|
||
|
{
|
||
|
return bmbbh;
|
||
|
}
|
||
|
public void setOriginFpdm(String originFpdm)
|
||
|
{
|
||
|
this.originFpdm = originFpdm;
|
||
|
}
|
||
|
|
||
|
public String getOriginFpdm()
|
||
|
{
|
||
|
return originFpdm;
|
||
|
}
|
||
|
public void setOriginFphm(String originFphm)
|
||
|
{
|
||
|
this.originFphm = originFphm;
|
||
|
}
|
||
|
|
||
|
public String getOriginFphm()
|
||
|
{
|
||
|
return originFphm;
|
||
|
}
|
||
|
public void setTsfs(String tsfs)
|
||
|
{
|
||
|
this.tsfs = tsfs;
|
||
|
}
|
||
|
|
||
|
public String getTsfs()
|
||
|
{
|
||
|
return tsfs;
|
||
|
}
|
||
|
public void setQdbz(String qdbz)
|
||
|
{
|
||
|
this.qdbz = qdbz;
|
||
|
}
|
||
|
|
||
|
public String getQdbz()
|
||
|
{
|
||
|
return qdbz;
|
||
|
}
|
||
|
public void setQdxmmc(String qdxmmc)
|
||
|
{
|
||
|
this.qdxmmc = qdxmmc;
|
||
|
}
|
||
|
|
||
|
public String getQdxmmc()
|
||
|
{
|
||
|
return qdxmmc;
|
||
|
}
|
||
|
public void setDkbz(String dkbz)
|
||
|
{
|
||
|
this.dkbz = dkbz;
|
||
|
}
|
||
|
|
||
|
public String getDkbz()
|
||
|
{
|
||
|
return dkbz;
|
||
|
}
|
||
|
public void setCpybz(String cpybz)
|
||
|
{
|
||
|
this.cpybz = cpybz;
|
||
|
}
|
||
|
|
||
|
public String getCpybz()
|
||
|
{
|
||
|
return cpybz;
|
||
|
}
|
||
|
public void setState(Integer state)
|
||
|
{
|
||
|
this.state = state;
|
||
|
}
|
||
|
|
||
|
public Integer getState()
|
||
|
{
|
||
|
return state;
|
||
|
}
|
||
|
public void setSource(String source)
|
||
|
{
|
||
|
this.source = source;
|
||
|
}
|
||
|
|
||
|
public String getSource()
|
||
|
{
|
||
|
return source;
|
||
|
}
|
||
|
public void setServiceSupplierKey(String serviceSupplierKey)
|
||
|
{
|
||
|
this.serviceSupplierKey = serviceSupplierKey;
|
||
|
}
|
||
|
|
||
|
public String getServiceSupplierKey()
|
||
|
{
|
||
|
return serviceSupplierKey;
|
||
|
}
|
||
|
public void setBillType(String billType)
|
||
|
{
|
||
|
this.billType = billType;
|
||
|
}
|
||
|
|
||
|
public String getBillType()
|
||
|
{
|
||
|
return billType;
|
||
|
}
|
||
|
public void setBusinessRemark(String businessRemark)
|
||
|
{
|
||
|
this.businessRemark = businessRemark;
|
||
|
}
|
||
|
|
||
|
public String getBusinessRemark()
|
||
|
{
|
||
|
return businessRemark;
|
||
|
}
|
||
|
public void setTaxfreeamt(BigDecimal taxfreeamt)
|
||
|
{
|
||
|
this.taxfreeamt = taxfreeamt;
|
||
|
}
|
||
|
|
||
|
public BigDecimal getTaxfreeamt()
|
||
|
{
|
||
|
return taxfreeamt;
|
||
|
}
|
||
|
public void setInvoicedTime(Date invoicedTime)
|
||
|
{
|
||
|
this.invoicedTime = invoicedTime;
|
||
|
}
|
||
|
|
||
|
public Date getInvoicedTime()
|
||
|
{
|
||
|
return invoicedTime;
|
||
|
}
|
||
|
public void setTax(BigDecimal tax)
|
||
|
{
|
||
|
this.tax = tax;
|
||
|
}
|
||
|
|
||
|
public BigDecimal getTax()
|
||
|
{
|
||
|
return tax;
|
||
|
}
|
||
|
public void setTaxamt(BigDecimal taxamt)
|
||
|
{
|
||
|
this.taxamt = taxamt;
|
||
|
}
|
||
|
|
||
|
public BigDecimal getTaxamt()
|
||
|
{
|
||
|
return taxamt;
|
||
|
}
|
||
|
public void setDeletedTime(Date deletedTime)
|
||
|
{
|
||
|
this.deletedTime = deletedTime;
|
||
|
}
|
||
|
|
||
|
public Date getDeletedTime()
|
||
|
{
|
||
|
return deletedTime;
|
||
|
}
|
||
|
|
||
|
public List<BillDetail> getBillDetailList()
|
||
|
{
|
||
|
return billDetailList;
|
||
|
}
|
||
|
|
||
|
public void setBillDetailList(List<BillDetail> billDetailList)
|
||
|
{
|
||
|
this.billDetailList = billDetailList;
|
||
|
}
|
||
|
|
||
|
public String getCallbackUrl() {
|
||
|
return callbackUrl;
|
||
|
}
|
||
|
|
||
|
public void setCallbackUrl(String callbackUrl) {
|
||
|
this.callbackUrl = callbackUrl;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||
|
.append("id", getId())
|
||
|
.append("companyId", getCompanyId())
|
||
|
.append("systemOrderno", getSystemOrderno())
|
||
|
.append("outTradeOrderno", getOutTradeOrderno())
|
||
|
.append("fpqqlsh", getFpqqlsh())
|
||
|
.append("invoiceType", getInvoiceType())
|
||
|
.append("buyerName", getBuyerName())
|
||
|
.append("buyerTaxnum", getBuyerTaxnum())
|
||
|
.append("buyerAddress", getBuyerAddress())
|
||
|
.append("buyerTelephone", getBuyerTelephone())
|
||
|
.append("buyerBank", getBuyerBank())
|
||
|
.append("buyerAccount", getBuyerAccount())
|
||
|
.append("buyerEmail", getBuyerEmail())
|
||
|
.append("buyerPhone", getBuyerPhone())
|
||
|
.append("sellerName", getSellerName())
|
||
|
.append("sellerTaxnum", getSellerTaxnum())
|
||
|
.append("sellerAddress", getSellerAddress())
|
||
|
.append("sellerTelephone", getSellerTelephone())
|
||
|
.append("sellerAccount", getSellerAccount())
|
||
|
.append("message", getMessage())
|
||
|
.append("sellerBank", getSellerBank())
|
||
|
.append("clerk", getClerk())
|
||
|
.append("payee", getPayee())
|
||
|
.append("checker", getChecker())
|
||
|
.append("redInvoiceInfoCode", getRedInvoiceInfoCode())
|
||
|
.append("fjh", getFjh())
|
||
|
.append("terminalNumber", getTerminalNumber())
|
||
|
.append("remark", getRemark())
|
||
|
.append("kptype", getKptype())
|
||
|
.append("originSystemOrderno", getOriginSystemOrderno())
|
||
|
.append("bmbbh", getBmbbh())
|
||
|
.append("originFpdm", getOriginFpdm())
|
||
|
.append("originFphm", getOriginFphm())
|
||
|
.append("tsfs", getTsfs())
|
||
|
.append("qdbz", getQdbz())
|
||
|
.append("qdxmmc", getQdxmmc())
|
||
|
.append("dkbz", getDkbz())
|
||
|
.append("cpybz", getCpybz())
|
||
|
.append("state", getState())
|
||
|
.append("source", getSource())
|
||
|
.append("serviceSupplierKey", getServiceSupplierKey())
|
||
|
.append("billType", getBillType())
|
||
|
.append("businessRemark", getBusinessRemark())
|
||
|
.append("taxfreeamt", getTaxfreeamt())
|
||
|
.append("invoicedTime", getInvoicedTime())
|
||
|
.append("createBy", getCreateBy())
|
||
|
.append("tax", getTax())
|
||
|
.append("createTime", getCreateTime())
|
||
|
.append("taxamt", getTaxamt())
|
||
|
.append("updateBy", getUpdateBy())
|
||
|
.append("updateTime", getUpdateTime())
|
||
|
.append("deletedTime", getDeletedTime())
|
||
|
.append("billDetailList", getBillDetailList())
|
||
|
.toString();
|
||
|
}
|
||
|
}
|