NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

package bbsr.highradius.training.model.invoice;

public class trn_address {
private String address_id;
private String line1;
private String line2;
private String street;
private String city;
private String zip;
private String state;
private String country;
public String getAddress_id() {
return address_id;
}
public void setAddress_id(String address_id) {
this.address_id = address_id;
}
public String getLine1() {
return line1;
}
public void setLine1(String line1) {
this.line1 = line1;
}
public String getLine2() {
return line2;
}
public void setLine2(String line2) {
this.line2 = line2;
}
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getZip() {
return zip;
}
public void setZip(String zip) {
this.zip = zip;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}

}




package bbsr.highradius.training.model.invoice;

public class trn_customer_type
{
private String pk_customer_type_id;
private String fk_account_id;
private String customer_type;
private String description;

private trn_account act_id;

public String getPk_customer_type_id() {
return pk_customer_type_id;
}
public void setPk_customer_type_id(String pk_customer_type_id) {
this.pk_customer_type_id = pk_customer_type_id;
}
public String getFk_account_id() {
return fk_account_id;
}
public void setFk_account_id(String fk_account_id) {
this.fk_account_id = fk_account_id;
}
public String getCustomer_type() {
return customer_type;
}
public void setCustomer_type(String customer_type) {
this.customer_type = customer_type;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public trn_account getAct_id() {
return act_id;
}
public void setAct_id(trn_account act_id) {
this.act_id = act_id;
}

}



package bbsr.highradius.training.model.invoice;

public class trn_customer {
private String pk_customer_map_id;
private String fk_account_id;
private String customer_number;
private String customer_name;
private String fk_customer_type;
private String fk_address_id;
private String company_code;

private trn_account act_id;
private trn_address add_id;
private trn_customer_type cust_type;

public String getPk_customer_map_id() {
return pk_customer_map_id;
}
public void setPk_customer_map_id(String pk_customer_map_id) {
this.pk_customer_map_id = pk_customer_map_id;
}
public String getFk_account_id() {
return fk_account_id;
}
public void setFk_account_id(String fk_account_id) {
this.fk_account_id = fk_account_id;
}
public String getCustomer_number() {
return customer_number;
}
public void setCustomer_number(String customer_number) {
this.customer_number = customer_number;
}
public String getCustomer_name() {
return customer_name;
}
public void setCustomer_name(String customer_name) {
this.customer_name = customer_name;
}
public String getFk_customer_type() {
return fk_customer_type;
}
public void setFk_customer_type(String fk_customer_type) {
this.fk_customer_type = fk_customer_type;
}
public String getFk_address_id() {
return fk_address_id;
}
public void setFk_address_id(String fk_address_id) {
this.fk_address_id = fk_address_id;
}
public String getCompany_code() {
return company_code;
}
public void setCompany_code(String company_code) {
this.company_code = company_code;
}
public trn_account getAct_id() {
return act_id;
}
public void setAct_id(trn_account act_id) {
this.act_id = act_id;
}
public trn_address getAdd_id() {
return add_id;
}
public void setAdd_id(trn_address add_id) {
this.add_id = add_id;
}
public trn_customer_type getCust_type() {
return cust_type;
}
public void setCust_type(trn_customer_type cust_type) {
this.cust_type = cust_type;
}

}



package bbsr.highradius.training.model.invoice;

public class trn_invoice_type
{
private String pk_invoice_type_map_id;
private String fk_account_id;
private String invoice_type;
private String description;

private trn_account act_id;

public trn_account getAct_id() {
return act_id;
}
public void setAct_id(trn_account act_id) {
this.act_id = act_id;
}
public String getPk_invoice_type_map_id() {
return pk_invoice_type_map_id;
}
public void setPk_invoice_type_map_id(String pk_invoice_type_map_id) {
this.pk_invoice_type_map_id = pk_invoice_type_map_id;
}
public String getFk_account_id() {
return fk_account_id;
}
public void setFk_account_id(String fk_account_id) {
this.fk_account_id = fk_account_id;
}
public String getInvoice_type() {
return invoice_type;
}
public void setInvoice_type(String invoice_type) {
this.invoice_type = invoice_type;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}

}




package bbsr.highradius.training.model.invoice;
public class trn_invoice
{
private String pk_invoice_id;
private String fk_account_id;
private String invoice_number;
private String company_code;
private String fiscal_year;
private String item_number;
private String fk_invoice_type;
private String fk_posting_key;
private String fk_customer_id;
private String invoice_total_amount;
private String invoice_due_amount;
private String invoice_created_date;
private String due_date;
private String discount_1_percentage;
private String discount_2_percentage;
private String discount_3_percentage;
private String debit_credit_indicator;
private String is_open;
private String approval_status;

private trn_account act_id;
private trn_invoice_type inv_typ;
private trn_posting_key post_key;
private trn_customer cust_id;

public trn_account getAct_id() {
return act_id;
}
public void setAct_id(trn_account act_id) {
this.act_id = act_id;
}
public trn_invoice_type getInv_typ() {
return inv_typ;
}
public void setInv_typ(trn_invoice_type inv_typ) {
this.inv_typ = inv_typ;
}
public trn_posting_key getPost_key() {
return post_key;
}
public void setPost_key(trn_posting_key post_key) {
this.post_key = post_key;
}
public trn_customer getCust_id() {
return cust_id;
}
public void setCust_id(trn_customer cust_id) {
this.cust_id = cust_id;
}

public String getPk_invoice_id() {
return pk_invoice_id;
}
public void setPk_invoice_id(String pk_invoice_id) {
this.pk_invoice_id = pk_invoice_id;
}
public String getFk_account_id() {
return fk_account_id;
}
public void setFk_account_id(String fk_account_id) {
this.fk_account_id = fk_account_id;
}
public String getInvoice_number() {
return invoice_number;
}
public void setInvoice_number(String invoice_number) {
this.invoice_number = invoice_number;
}
public String getCompany_code() {
return company_code;
}
public void setCompany_code(String company_code) {
this.company_code = company_code;
}
public String getFiscal_year() {
return fiscal_year;
}
public void setFiscal_year(String fiscal_year) {
this.fiscal_year = fiscal_year;
}
public String getItem_number() {
return item_number;
}
public void setItem_number(String item_number) {
this.item_number = item_number;
}
public String getFk_invoice_type() {
return fk_invoice_type;
}
public void setFk_invoice_type(String fk_invoice_type) {
this.fk_invoice_type = fk_invoice_type;
}
public String getFk_posting_key() {
return fk_posting_key;
}
public void setFk_posting_key(String fk_posting_key) {
this.fk_posting_key = fk_posting_key;
}
public String getFk_customer_id() {
return fk_customer_id;
}
public void setFk_customer_id(String fk_customer_id) {
this.fk_customer_id = fk_customer_id;
}
public String getInvoice_total_amount() {
return invoice_total_amount;
}
public void setInvoice_total_amount(String invoice_total_amount) {
this.invoice_total_amount = invoice_total_amount;
}
public String getInvoice_due_amount() {
return invoice_due_amount;
}
public void setInvoice_due_amount(String invoice_due_amount) {
this.invoice_due_amount = invoice_due_amount;
}
public String getInvoice_created_date() {
return invoice_created_date;
}
public void setInvoice_created_date(String invoice_created_date) {
this.invoice_created_date = invoice_created_date;
}
public String getDue_date() {
return due_date;
}
public void setDue_date(String due_date) {
this.due_date = due_date;
}
public String getDiscount_1_percentage() {
return discount_1_percentage;
}
public void setDiscount_1_percentage(String discount_1_percentage) {
this.discount_1_percentage = discount_1_percentage;
}
public String getDiscount_2_percentage() {
return discount_2_percentage;
}
public void setDiscount_2_percentage(String discount_2_percentage) {
this.discount_2_percentage = discount_2_percentage;
}
public String getDiscount_3_percentage() {
return discount_3_percentage;
}
public void setDiscount_3_percentage(String discount_3_percentage) {
this.discount_3_percentage = discount_3_percentage;
}
public String getDebit_credit_indicator() {
return debit_credit_indicator;
}
public void setDebit_credit_indicator(String debit_credit_indicator) {
this.debit_credit_indicator = debit_credit_indicator;
}
public String getIs_open() {
return is_open;
}
public void setIs_open(String is_open) {
this.is_open = is_open;
}
public String getApproval_status() {
return approval_status;
}
public void setApproval_status(String approval_status) {
this.approval_status = approval_status;
}
}




package bbsr.highradius.training.model.invoice;

public class trn_posting_key
{
private String pk_posting_key_id;
private String fk_account_id;
private String key_type;
private String description;

private trn_address acc_id;

public String getPk_posting_key_id() {
return pk_posting_key_id;
}
public void setPk_posting_key_id(String pk_posting_key_id) {
this.pk_posting_key_id = pk_posting_key_id;
}
public String getFk_account_id() {
return fk_account_id;
}
public void setFk_account_id(String fk_account_id) {
this.fk_account_id = fk_account_id;
}
public String getKey_type() {
return key_type;
}
public void setKey_type(String key_type) {
this.key_type = key_type;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public trn_address getAcc_id() {
return acc_id;
}
public void setAcc_id(trn_address acc_id) {
this.acc_id = acc_id;
}

}

     
 
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.