package foundation.ai.dao;
|
|
import java.util.List;
|
|
public class InvoiceIdentifyDao {
|
|
private String Code;
|
private String Number;
|
private String Date;
|
private String BuyerName;
|
private String BuyerTaxCode;
|
private String BuyerAddressPhone;
|
private String BuyerBankAccount;
|
private String SellerName;
|
private String SellerTaxCode;
|
private String SellerAddressPhone;
|
private String SellerBankAccount;
|
private String Remark;
|
private String MachineNo;
|
private String Type;
|
private String CheckCode;
|
private String IsAbandoned;
|
private String HasSellerList;
|
private String SellerListTax;
|
private String AmountWithoutTax;
|
private String TaxAmount;
|
private String AmountWithTax;
|
private String TaxBureau;
|
private String TrafficFreeFlag;
|
private List<InvoiceVerificationDetailDao> Items;
|
|
public String getCode() {
|
return Code;
|
}
|
|
public void setCode(String code) {
|
Code = code;
|
}
|
|
public String getNumber() {
|
return Number;
|
}
|
|
public void setNumber(String number) {
|
Number = number;
|
}
|
|
public String getDate() {
|
return Date;
|
}
|
|
public void setDate(String date) {
|
Date = date;
|
}
|
|
public String getBuyerName() {
|
return BuyerName;
|
}
|
|
public void setBuyerName(String buyerName) {
|
BuyerName = buyerName;
|
}
|
|
public String getBuyerTaxCode() {
|
return BuyerTaxCode;
|
}
|
|
public void setBuyerTaxCode(String buyerTaxCode) {
|
BuyerTaxCode = buyerTaxCode;
|
}
|
|
public String getBuyerAddressPhone() {
|
return BuyerAddressPhone;
|
}
|
|
public void setBuyerAddressPhone(String buyerAddressPhone) {
|
BuyerAddressPhone = buyerAddressPhone;
|
}
|
|
public String getBuyerBankAccount() {
|
return BuyerBankAccount;
|
}
|
|
public void setBuyerBankAccount(String buyerBankAccount) {
|
BuyerBankAccount = buyerBankAccount;
|
}
|
|
public String getSellerName() {
|
return SellerName;
|
}
|
|
public void setSellerName(String sellerName) {
|
SellerName = sellerName;
|
}
|
|
public String getSellerTaxCode() {
|
return SellerTaxCode;
|
}
|
|
public void setSellerTaxCode(String sellerTaxCode) {
|
SellerTaxCode = sellerTaxCode;
|
}
|
|
public String getSellerAddressPhone() {
|
return SellerAddressPhone;
|
}
|
|
public void setSellerAddressPhone(String sellerAddressPhone) {
|
SellerAddressPhone = sellerAddressPhone;
|
}
|
|
public String getSellerBankAccount() {
|
return SellerBankAccount;
|
}
|
|
public void setSellerBankAccount(String sellerBankAccount) {
|
SellerBankAccount = sellerBankAccount;
|
}
|
|
public String getRemark() {
|
return Remark;
|
}
|
|
public void setRemark(String remark) {
|
Remark = remark;
|
}
|
|
public String getMachineNo() {
|
return MachineNo;
|
}
|
|
public void setMachineNo(String machineNo) {
|
MachineNo = machineNo;
|
}
|
|
public String getType() {
|
return Type;
|
}
|
|
public void setType(String type) {
|
Type = type;
|
}
|
|
public String getCheckCode() {
|
return CheckCode;
|
}
|
|
public void setCheckCode(String checkCode) {
|
CheckCode = checkCode;
|
}
|
|
public String getIsAbandoned() {
|
return IsAbandoned;
|
}
|
|
public void setIsAbandoned(String isAbandoned) {
|
IsAbandoned = isAbandoned;
|
}
|
|
public String getHasSellerList() {
|
return HasSellerList;
|
}
|
|
public void setHasSellerList(String hasSellerList) {
|
HasSellerList = hasSellerList;
|
}
|
|
public String getSellerListTax() {
|
return SellerListTax;
|
}
|
|
public void setSellerListTax(String sellerListTax) {
|
SellerListTax = sellerListTax;
|
}
|
|
public String getAmountWithoutTax() {
|
return AmountWithoutTax;
|
}
|
|
public void setAmountWithoutTax(String amountWithoutTax) {
|
AmountWithoutTax = amountWithoutTax;
|
}
|
|
public String getTaxAmount() {
|
return TaxAmount;
|
}
|
|
public void setTaxAmount(String taxAmount) {
|
TaxAmount = taxAmount;
|
}
|
|
public String getAmountWithTax() {
|
return AmountWithTax;
|
}
|
|
public void setAmountWithTax(String amountWithTax) {
|
AmountWithTax = amountWithTax;
|
}
|
|
public String getTaxBureau() {
|
return TaxBureau;
|
}
|
|
public void setTaxBureau(String taxBureau) {
|
TaxBureau = taxBureau;
|
}
|
|
public String getTrafficFreeFlag() {
|
return TrafficFreeFlag;
|
}
|
|
public void setTrafficFreeFlag(String trafficFreeFlag) {
|
TrafficFreeFlag = trafficFreeFlag;
|
}
|
|
public List<InvoiceVerificationDetailDao> getItems() {
|
return Items;
|
}
|
|
public void setItems(List<InvoiceVerificationDetailDao> items) {
|
Items = items;
|
}
|
|
}
|