NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

package com.highradius.model;
import java.io.Serializable;
import java.sql.Date;
public class Dbco implements Serializable
{
int accountId;
String documentNumberNorm;
String companyCode;
String fiscalYear;
String branch;
String customerNumberNorm;
int fkCustomerMapId;
java.sql.Date documentDateNorm;
java.sql.Date baselineDateNorm;
java.sql.Date dueDateNorm;
String invoiceNumberNorm;
double openAmountNorm;
String paymentTerms;
java.sql.Date clearingDateNorm;
int isOpen;
String orderType;
java.sql.Date orderDate;
String businessArea;
java.sql.Date shipDate;
int jobId;
double taxAmt;
double currentDisputAmount;
String shipTo;
int documentId;
java.sql.Date documentDate;
double actualOpenAmount;
java.sql.Date dueDate;
int invoiceAge;
int isValidDispute;
String postingKey;
int strategyId;
String currency;
int debitCreditIndicator;
double validOpenAmount;
String customerName;
double retainageAmount;
public int getAccountId() {
return accountId;
}
public void setAccountId(int accountId) {
this.accountId = accountId;
}
public String getDocumentNumberNorm() {
return documentNumberNorm;
}
public void setDocumentNumberNorm(String documentNumberNorm) {
this.documentNumberNorm = documentNumberNorm;
}
public String getCompanyCode() {
return companyCode;
}
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
public String getFiscalYear() {
return fiscalYear;
}
public void setFiscalYear(String fiscalYear) {
this.fiscalYear = fiscalYear;
}
public String getBranch() {
return branch;
}
public void setBranch(String branch) {
this.branch = branch;
}
public String getCustomerNumberNorm() {
return customerNumberNorm;
}
public void setCustomerNumberNorm(String customerNumberNorm) {
this.customerNumberNorm = customerNumberNorm;
}
public int getFkCustomerMapId() {
return fkCustomerMapId;
}
public void setFkCustomerMapId(int fkCustomerMapId) {
this.fkCustomerMapId = fkCustomerMapId;
}
public java.sql.Date getDocumentDateNorm() {
return documentDateNorm;
}
public void setDocumentDateNorm(java.sql.Date documentDateNorm) {
this.documentDateNorm = documentDateNorm;
}
public java.sql.Date getBaselineDateNorm() {
return baselineDateNorm;
}
public void setBaselineDateNorm(java.sql.Date baselineDateNorm) {
this.baselineDateNorm = baselineDateNorm;
}
public java.sql.Date getDueDateNorm() {
return dueDateNorm;
}
public void setDueDateNorm(java.sql.Date dueDateNorm) {
this.dueDateNorm = dueDateNorm;
}
public String getInvoiceNumberNorm() {
return invoiceNumberNorm;
}
public void setInvoiceNumberNorm(String invoiceNumberNorm) {
this.invoiceNumberNorm = invoiceNumberNorm;
}
public double getOpenAmountNorm() {
return openAmountNorm;
}
public void setOpenAmountNorm(double openAmountNorm) {
this.openAmountNorm = openAmountNorm;
}
public String getPaymentTerms() {
return paymentTerms;
}
public void setPaymentTerms(String paymentTerms) {
this.paymentTerms = paymentTerms;
}
public java.sql.Date getClearingDateNorm() {
return clearingDateNorm;
}
public void setClearingDateNorm(java.sql.Date clearingDateNorm) {
this.clearingDateNorm = clearingDateNorm;
}
public int getIsOpen() {
return isOpen;
}
public void setIsOpen(int isOpen) {
this.isOpen = isOpen;
}
public String getOrderType() {
return orderType;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
}
public java.sql.Date getOrderDate() {
return orderDate;
}
public void setOrderDate(java.sql.Date orderDate) {
this.orderDate = orderDate;
}
public String getBusinessArea() {
return businessArea;
}
public void setBusinessArea(String businessArea) {
this.businessArea = businessArea;
}
public java.sql.Date getShipDate() {
return shipDate;
}
public void setShipDate(java.sql.Date shipDate) {
this.shipDate = shipDate;
}
public int getJobId() {
return jobId;
}
public void setJobId(int jobId) {
this.jobId = jobId;
}
public double getTaxAmt() {
return taxAmt;
}
public void setTaxAmt(double taxAmt) {
this.taxAmt = taxAmt;
}
public double getCurrentDisputAmount() {
return currentDisputAmount;
}
public void setCurrentDisputAmount(double currentDisputAmount) {
this.currentDisputAmount = currentDisputAmount;
}
public String getShipTo() {
return shipTo;
}
public void setShipTo(String shipTo) {
this.shipTo = shipTo;
}
public int getDocumentId() {
return documentId;
}
public void setDocumentId(int documentId) {
this.documentId = documentId;
}
public java.sql.Date getDocumentDate() {
return documentDate;
}
public void setDocumentDate(java.sql.Date documentDate) {
this.documentDate = documentDate;
}
public double getActualOpenAmount() {
return actualOpenAmount;
}
public void setActualOpenAmount(double actualOpenAmount) {
this.actualOpenAmount = actualOpenAmount;
}
public java.sql.Date getDueDate() {
return dueDate;
}
public void setDueDate(java.sql.Date dueDate) {
this.dueDate = dueDate;
}
public int getInvoiceAge() {
return invoiceAge;
}
public void setInvoiceAge(int invoiceAge) {
this.invoiceAge = invoiceAge;
}
public int getIsValidDispute() {
return isValidDispute;
}
public void setIsValidDispute(int isValidDispute) {
this.isValidDispute = isValidDispute;
}
public String getPostingKey() {
return postingKey;
}
public void setPostingKey(String postingKey) {
this.postingKey = postingKey;
}
public int getStrategyId() {
return strategyId;
}
public void setStrategyId(int strategyId) {
this.strategyId = strategyId;
}
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public int getDebitCreditIndicator() {
return debitCreditIndicator;
}
public void setDebitCreditIndicator(int debitCreditIndicator) {
this.debitCreditIndicator = debitCreditIndicator;
}
public double getValidOpenAmount() {
return validOpenAmount;
}
public void setValidOpenAmount(double validOpenAmount) {
this.validOpenAmount = validOpenAmount;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public double getRetainageAmount() {
return retainageAmount;
}
public void setRetainageAmount(double retainageAmount) {
this.retainageAmount = retainageAmount;
}





















}
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.