update
This commit is contained in:
@@ -3,321 +3,307 @@ package com.jsh.model.po;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Supplier implements java.io.Serializable
|
||||
{
|
||||
private Long id =0l;
|
||||
private String supplier = "";
|
||||
private String type = "";
|
||||
private String contacts = "";
|
||||
private String phonenum = "";
|
||||
private String fax = "";
|
||||
private String telephone = "";
|
||||
private String email = "";
|
||||
private String address = "";
|
||||
private Double advanceIn = 0d;
|
||||
private String taxNum = "";
|
||||
private String bankName = "";
|
||||
private String accountNumber = "";
|
||||
private Double taxRate = 0d;
|
||||
public class Supplier implements java.io.Serializable {
|
||||
private Long id = 0l;
|
||||
private String supplier = "";
|
||||
private String type = "";
|
||||
private String contacts = "";
|
||||
private String phonenum = "";
|
||||
private String fax = "";
|
||||
private String telephone = "";
|
||||
private String email = "";
|
||||
private String address = "";
|
||||
private Double advanceIn = 0d;
|
||||
private String taxNum = "";
|
||||
private String bankName = "";
|
||||
private String accountNumber = "";
|
||||
private Double taxRate = 0d;
|
||||
private Double BeginNeedGet = 0d;
|
||||
private Double BeginNeedPay = 0d;
|
||||
private Double AllNeedGet = 0d;
|
||||
private Double AllNeedPay = 0d;
|
||||
private Short isystem = 1;
|
||||
private String description = "";
|
||||
private Boolean enabled = true;
|
||||
private Short isystem = 1;
|
||||
private String description = "";
|
||||
private Boolean enabled = true;
|
||||
|
||||
//----------以下属性导入exel表格使用--------------------
|
||||
/**
|
||||
* 类型 right--正确 warn--警告 wrong--错误
|
||||
*/
|
||||
private Map<Integer,String> cellInfo;
|
||||
//----------以下属性导入exel表格使用--------------------
|
||||
/**
|
||||
* 类型 right--正确 warn--警告 wrong--错误
|
||||
*/
|
||||
private Map<Integer, String> cellInfo;
|
||||
|
||||
/**
|
||||
* 行号
|
||||
*/
|
||||
private Integer rowLineNum;
|
||||
/**
|
||||
* 行号
|
||||
*/
|
||||
private Integer rowLineNum;
|
||||
|
||||
private String advanceInStr;
|
||||
private String advanceInStr;
|
||||
|
||||
private String beginNeedGetStr;
|
||||
private String beginNeedGetStr;
|
||||
|
||||
private String beginNeedPayStr;
|
||||
private String beginNeedPayStr;
|
||||
|
||||
private String taxRateStr;
|
||||
private String taxRateStr;
|
||||
|
||||
private String enabledStr;
|
||||
private String enabledStr;
|
||||
|
||||
|
||||
public Supplier()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Supplier(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
public Supplier() {
|
||||
|
||||
public Supplier(String supplier, String type, String contacts, String phonenum,
|
||||
String fax,String telephone, String email, String address, Short isystem, String description,
|
||||
Boolean enabled, Double advanceIn, String taxNum,String bankName,String accountNumber, Double taxRate,
|
||||
Double beginNeedGet,Double beginNeedPay,Double allNeedGet,Double allNeedPay) {
|
||||
super();
|
||||
this.supplier = supplier;
|
||||
this.type = type;
|
||||
this.contacts = contacts;
|
||||
this.phonenum = phonenum;
|
||||
this.fax = fax;
|
||||
this.telephone = telephone;
|
||||
this.address = address;
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public Supplier(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Supplier(String supplier, String type, String contacts, String phonenum,
|
||||
String fax, String telephone, String email, String address, Short isystem, String description,
|
||||
Boolean enabled, Double advanceIn, String taxNum, String bankName, String accountNumber, Double taxRate,
|
||||
Double beginNeedGet, Double beginNeedPay, Double allNeedGet, Double allNeedPay) {
|
||||
super();
|
||||
this.supplier = supplier;
|
||||
this.type = type;
|
||||
this.contacts = contacts;
|
||||
this.phonenum = phonenum;
|
||||
this.fax = fax;
|
||||
this.telephone = telephone;
|
||||
this.address = address;
|
||||
this.email = email;
|
||||
this.BeginNeedGet = beginNeedGet;
|
||||
this.BeginNeedPay = beginNeedPay;
|
||||
this.AllNeedGet = allNeedGet;
|
||||
this.AllNeedPay = allNeedPay;
|
||||
this.isystem = isystem;
|
||||
this.description = description;
|
||||
this.enabled = enabled;
|
||||
this.advanceIn = advanceIn;
|
||||
this.taxNum = taxNum;
|
||||
this.bankName = bankName;
|
||||
this.accountNumber = accountNumber;
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getSupplier()
|
||||
{
|
||||
return supplier;
|
||||
}
|
||||
|
||||
public void setSupplier(String supplier) {
|
||||
this.supplier = supplier;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getContacts() {
|
||||
return contacts;
|
||||
}
|
||||
|
||||
public void setContacts(String contacts) {
|
||||
this.contacts = contacts;
|
||||
}
|
||||
|
||||
public String getPhonenum() {
|
||||
return phonenum;
|
||||
}
|
||||
|
||||
public void setPhonenum(String phonenum) {
|
||||
this.phonenum = phonenum;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public void setBeginNeedGet(Double beginNeedGet)
|
||||
{
|
||||
BeginNeedGet = beginNeedGet;
|
||||
this.AllNeedPay = allNeedPay;
|
||||
this.isystem = isystem;
|
||||
this.description = description;
|
||||
this.enabled = enabled;
|
||||
this.advanceIn = advanceIn;
|
||||
this.taxNum = taxNum;
|
||||
this.bankName = bankName;
|
||||
this.accountNumber = accountNumber;
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
|
||||
public Double getBeginNeedGet()
|
||||
{
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getSupplier() {
|
||||
return supplier;
|
||||
}
|
||||
|
||||
public void setSupplier(String supplier) {
|
||||
this.supplier = supplier;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getContacts() {
|
||||
return contacts;
|
||||
}
|
||||
|
||||
public void setContacts(String contacts) {
|
||||
this.contacts = contacts;
|
||||
}
|
||||
|
||||
public String getPhonenum() {
|
||||
return phonenum;
|
||||
}
|
||||
|
||||
public void setPhonenum(String phonenum) {
|
||||
this.phonenum = phonenum;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public Double getBeginNeedGet() {
|
||||
return BeginNeedGet;
|
||||
}
|
||||
|
||||
public void setBeginNeedPay(Double beginNeedPay)
|
||||
{
|
||||
BeginNeedPay = beginNeedPay;
|
||||
public void setBeginNeedGet(Double beginNeedGet) {
|
||||
BeginNeedGet = beginNeedGet;
|
||||
}
|
||||
|
||||
public Double getBeginNeedPay()
|
||||
{
|
||||
public Double getBeginNeedPay() {
|
||||
return BeginNeedPay;
|
||||
}
|
||||
|
||||
public void setAllNeedGet(Double allNeedGet)
|
||||
{
|
||||
AllNeedGet = allNeedGet;
|
||||
public void setBeginNeedPay(Double beginNeedPay) {
|
||||
BeginNeedPay = beginNeedPay;
|
||||
}
|
||||
|
||||
public Double getAllNeedGet()
|
||||
{
|
||||
public Double getAllNeedGet() {
|
||||
return AllNeedGet;
|
||||
}
|
||||
|
||||
public void setAllNeedPay(Double allNeedPay)
|
||||
{
|
||||
AllNeedPay = allNeedPay;
|
||||
public void setAllNeedGet(Double allNeedGet) {
|
||||
AllNeedGet = allNeedGet;
|
||||
}
|
||||
|
||||
public Double getAllNeedPay()
|
||||
{
|
||||
public Double getAllNeedPay() {
|
||||
return AllNeedPay;
|
||||
}
|
||||
|
||||
public Short getIsystem() {
|
||||
return isystem;
|
||||
}
|
||||
public void setAllNeedPay(Double allNeedPay) {
|
||||
AllNeedPay = allNeedPay;
|
||||
}
|
||||
|
||||
public void setIsystem(Short isystem) {
|
||||
this.isystem = isystem;
|
||||
}
|
||||
public Short getIsystem() {
|
||||
return isystem;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
public void setIsystem(Short isystem) {
|
||||
this.isystem = isystem;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public Double getAdvanceIn() {
|
||||
return advanceIn;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public void setAdvanceIn(Double advanceIn) {
|
||||
this.advanceIn = advanceIn;
|
||||
}
|
||||
public Double getAdvanceIn() {
|
||||
return advanceIn;
|
||||
}
|
||||
|
||||
public String getFax() {
|
||||
return fax;
|
||||
}
|
||||
public void setAdvanceIn(Double advanceIn) {
|
||||
this.advanceIn = advanceIn;
|
||||
}
|
||||
|
||||
public void setFax(String fax) {
|
||||
this.fax = fax;
|
||||
}
|
||||
public String getFax() {
|
||||
return fax;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
public void setFax(String fax) {
|
||||
this.fax = fax;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public String getTaxNum() {
|
||||
return taxNum;
|
||||
}
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public void setTaxNum(String taxNum) {
|
||||
this.taxNum = taxNum;
|
||||
}
|
||||
public String getTaxNum() {
|
||||
return taxNum;
|
||||
}
|
||||
|
||||
public String getBankName() {
|
||||
return bankName;
|
||||
}
|
||||
public void setTaxNum(String taxNum) {
|
||||
this.taxNum = taxNum;
|
||||
}
|
||||
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
public String getBankName() {
|
||||
return bankName;
|
||||
}
|
||||
|
||||
public String getAccountNumber() {
|
||||
return accountNumber;
|
||||
}
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
|
||||
public void setAccountNumber(String accountNumber) {
|
||||
this.accountNumber = accountNumber;
|
||||
}
|
||||
public String getAccountNumber() {
|
||||
return accountNumber;
|
||||
}
|
||||
|
||||
public Double getTaxRate() {
|
||||
return taxRate;
|
||||
}
|
||||
public void setAccountNumber(String accountNumber) {
|
||||
this.accountNumber = accountNumber;
|
||||
}
|
||||
|
||||
public void setTaxRate(Double taxRate) {
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
public Double getTaxRate() {
|
||||
return taxRate;
|
||||
}
|
||||
|
||||
public Map<Integer, String> getCellInfo() {
|
||||
return cellInfo;
|
||||
}
|
||||
public void setTaxRate(Double taxRate) {
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
|
||||
public void setCellInfo(Map<Integer, String> cellInfo) {
|
||||
this.cellInfo = cellInfo;
|
||||
}
|
||||
public Map<Integer, String> getCellInfo() {
|
||||
return cellInfo;
|
||||
}
|
||||
|
||||
public Integer getRowLineNum() {
|
||||
return rowLineNum;
|
||||
}
|
||||
public void setCellInfo(Map<Integer, String> cellInfo) {
|
||||
this.cellInfo = cellInfo;
|
||||
}
|
||||
|
||||
public void setRowLineNum(Integer rowLineNum) {
|
||||
this.rowLineNum = rowLineNum;
|
||||
}
|
||||
public Integer getRowLineNum() {
|
||||
return rowLineNum;
|
||||
}
|
||||
|
||||
public String getAdvanceInStr() {
|
||||
return advanceInStr;
|
||||
}
|
||||
public void setRowLineNum(Integer rowLineNum) {
|
||||
this.rowLineNum = rowLineNum;
|
||||
}
|
||||
|
||||
public void setAdvanceInStr(String advanceInStr) {
|
||||
this.advanceInStr = advanceInStr;
|
||||
}
|
||||
public String getAdvanceInStr() {
|
||||
return advanceInStr;
|
||||
}
|
||||
|
||||
public String getBeginNeedGetStr() {
|
||||
return beginNeedGetStr;
|
||||
}
|
||||
public void setAdvanceInStr(String advanceInStr) {
|
||||
this.advanceInStr = advanceInStr;
|
||||
}
|
||||
|
||||
public void setBeginNeedGetStr(String beginNeedGetStr) {
|
||||
this.beginNeedGetStr = beginNeedGetStr;
|
||||
}
|
||||
public String getBeginNeedGetStr() {
|
||||
return beginNeedGetStr;
|
||||
}
|
||||
|
||||
public String getBeginNeedPayStr() {
|
||||
return beginNeedPayStr;
|
||||
}
|
||||
public void setBeginNeedGetStr(String beginNeedGetStr) {
|
||||
this.beginNeedGetStr = beginNeedGetStr;
|
||||
}
|
||||
|
||||
public void setBeginNeedPayStr(String beginNeedPayStr) {
|
||||
this.beginNeedPayStr = beginNeedPayStr;
|
||||
}
|
||||
public String getBeginNeedPayStr() {
|
||||
return beginNeedPayStr;
|
||||
}
|
||||
|
||||
public String getTaxRateStr() {
|
||||
return taxRateStr;
|
||||
}
|
||||
public void setBeginNeedPayStr(String beginNeedPayStr) {
|
||||
this.beginNeedPayStr = beginNeedPayStr;
|
||||
}
|
||||
|
||||
public void setTaxRateStr(String taxRateStr) {
|
||||
this.taxRateStr = taxRateStr;
|
||||
}
|
||||
public String getTaxRateStr() {
|
||||
return taxRateStr;
|
||||
}
|
||||
|
||||
public String getEnabledStr() {
|
||||
return enabledStr;
|
||||
}
|
||||
public void setTaxRateStr(String taxRateStr) {
|
||||
this.taxRateStr = taxRateStr;
|
||||
}
|
||||
|
||||
public void setEnabledStr(String enabledStr) {
|
||||
this.enabledStr = enabledStr;
|
||||
}
|
||||
public String getEnabledStr() {
|
||||
return enabledStr;
|
||||
}
|
||||
|
||||
public void setEnabledStr(String enabledStr) {
|
||||
this.enabledStr = enabledStr;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user