1、修改double类型为BigDecimal
2、修复sql中大于小于少&出错的问题
This commit is contained in:
@@ -1,227 +1,229 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
public class Account {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.Name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.SerialNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String serialno;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.InitialAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Double initialamount;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.CurrentAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Double currentamount;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.IsDefault
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Boolean isdefault;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.Id
|
||||
*
|
||||
* @return the value of jsh_account.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.Id
|
||||
*
|
||||
* @param id the value for jsh_account.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.Name
|
||||
*
|
||||
* @return the value of jsh_account.Name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.Name
|
||||
*
|
||||
* @param name the value for jsh_account.Name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.SerialNo
|
||||
*
|
||||
* @return the value of jsh_account.SerialNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getSerialno() {
|
||||
return serialno;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.SerialNo
|
||||
*
|
||||
* @param serialno the value for jsh_account.SerialNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setSerialno(String serialno) {
|
||||
this.serialno = serialno == null ? null : serialno.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.InitialAmount
|
||||
*
|
||||
* @return the value of jsh_account.InitialAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Double getInitialamount() {
|
||||
return initialamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.InitialAmount
|
||||
*
|
||||
* @param initialamount the value for jsh_account.InitialAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setInitialamount(Double initialamount) {
|
||||
this.initialamount = initialamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.CurrentAmount
|
||||
*
|
||||
* @return the value of jsh_account.CurrentAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Double getCurrentamount() {
|
||||
return currentamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.CurrentAmount
|
||||
*
|
||||
* @param currentamount the value for jsh_account.CurrentAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setCurrentamount(Double currentamount) {
|
||||
this.currentamount = currentamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.Remark
|
||||
*
|
||||
* @return the value of jsh_account.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.Remark
|
||||
*
|
||||
* @param remark the value for jsh_account.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.IsDefault
|
||||
*
|
||||
* @return the value of jsh_account.IsDefault
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Boolean getIsdefault() {
|
||||
return isdefault;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.IsDefault
|
||||
*
|
||||
* @param isdefault the value for jsh_account.IsDefault
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setIsdefault(Boolean isdefault) {
|
||||
this.isdefault = isdefault;
|
||||
}
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class Account {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.Name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.SerialNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String serialno;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.InitialAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private BigDecimal initialamount;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.CurrentAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private BigDecimal currentamount;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_account.IsDefault
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Boolean isdefault;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.Id
|
||||
*
|
||||
* @return the value of jsh_account.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.Id
|
||||
*
|
||||
* @param id the value for jsh_account.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.Name
|
||||
*
|
||||
* @return the value of jsh_account.Name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.Name
|
||||
*
|
||||
* @param name the value for jsh_account.Name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.SerialNo
|
||||
*
|
||||
* @return the value of jsh_account.SerialNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getSerialno() {
|
||||
return serialno;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.SerialNo
|
||||
*
|
||||
* @param serialno the value for jsh_account.SerialNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setSerialno(String serialno) {
|
||||
this.serialno = serialno == null ? null : serialno.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.InitialAmount
|
||||
*
|
||||
* @return the value of jsh_account.InitialAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public BigDecimal getInitialamount() {
|
||||
return initialamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.InitialAmount
|
||||
*
|
||||
* @param initialamount the value for jsh_account.InitialAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setInitialamount(BigDecimal initialamount) {
|
||||
this.initialamount = initialamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.CurrentAmount
|
||||
*
|
||||
* @return the value of jsh_account.CurrentAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public BigDecimal getCurrentamount() {
|
||||
return currentamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.CurrentAmount
|
||||
*
|
||||
* @param currentamount the value for jsh_account.CurrentAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setCurrentamount(BigDecimal currentamount) {
|
||||
this.currentamount = currentamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.Remark
|
||||
*
|
||||
* @return the value of jsh_account.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.Remark
|
||||
*
|
||||
* @param remark the value for jsh_account.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_account.IsDefault
|
||||
*
|
||||
* @return the value of jsh_account.IsDefault
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Boolean getIsdefault() {
|
||||
return isdefault;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_account.IsDefault
|
||||
*
|
||||
* @param isdefault the value for jsh_account.IsDefault
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setIsdefault(Boolean isdefault) {
|
||||
this.isdefault = isdefault;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,325 +1,326 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class AccountHead {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.Type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.OrganId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long organid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long handspersonid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Double changeamount;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Double totalprice;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long accountid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.BillNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String billno;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.BillTime
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Date billtime;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.Id
|
||||
*
|
||||
* @return the value of jsh_accounthead.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.Id
|
||||
*
|
||||
* @param id the value for jsh_accounthead.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.Type
|
||||
*
|
||||
* @return the value of jsh_accounthead.Type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.Type
|
||||
*
|
||||
* @param type the value for jsh_accounthead.Type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.OrganId
|
||||
*
|
||||
* @return the value of jsh_accounthead.OrganId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getOrganid() {
|
||||
return organid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.OrganId
|
||||
*
|
||||
* @param organid the value for jsh_accounthead.OrganId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setOrganid(Long organid) {
|
||||
this.organid = organid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @return the value of jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getHandspersonid() {
|
||||
return handspersonid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @param handspersonid the value for jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setHandspersonid(Long handspersonid) {
|
||||
this.handspersonid = handspersonid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @return the value of jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Double getChangeamount() {
|
||||
return changeamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @param changeamount the value for jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setChangeamount(Double changeamount) {
|
||||
this.changeamount = changeamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @return the value of jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Double getTotalprice() {
|
||||
return totalprice;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @param totalprice the value for jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setTotalprice(Double totalprice) {
|
||||
this.totalprice = totalprice;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.AccountId
|
||||
*
|
||||
* @return the value of jsh_accounthead.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getAccountid() {
|
||||
return accountid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.AccountId
|
||||
*
|
||||
* @param accountid the value for jsh_accounthead.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setAccountid(Long accountid) {
|
||||
this.accountid = accountid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.BillNo
|
||||
*
|
||||
* @return the value of jsh_accounthead.BillNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getBillno() {
|
||||
return billno;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.BillNo
|
||||
*
|
||||
* @param billno the value for jsh_accounthead.BillNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setBillno(String billno) {
|
||||
this.billno = billno == null ? null : billno.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.BillTime
|
||||
*
|
||||
* @return the value of jsh_accounthead.BillTime
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Date getBilltime() {
|
||||
return billtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.BillTime
|
||||
*
|
||||
* @param billtime the value for jsh_accounthead.BillTime
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setBilltime(Date billtime) {
|
||||
this.billtime = billtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.Remark
|
||||
*
|
||||
* @return the value of jsh_accounthead.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.Remark
|
||||
*
|
||||
* @param remark the value for jsh_accounthead.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class AccountHead {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.Type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.OrganId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long organid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long handspersonid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private BigDecimal changeamount;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private BigDecimal totalprice;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long accountid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.BillNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String billno;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.BillTime
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Date billtime;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accounthead.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.Id
|
||||
*
|
||||
* @return the value of jsh_accounthead.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.Id
|
||||
*
|
||||
* @param id the value for jsh_accounthead.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.Type
|
||||
*
|
||||
* @return the value of jsh_accounthead.Type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.Type
|
||||
*
|
||||
* @param type the value for jsh_accounthead.Type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.OrganId
|
||||
*
|
||||
* @return the value of jsh_accounthead.OrganId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getOrganid() {
|
||||
return organid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.OrganId
|
||||
*
|
||||
* @param organid the value for jsh_accounthead.OrganId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setOrganid(Long organid) {
|
||||
this.organid = organid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @return the value of jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getHandspersonid() {
|
||||
return handspersonid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @param handspersonid the value for jsh_accounthead.HandsPersonId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setHandspersonid(Long handspersonid) {
|
||||
this.handspersonid = handspersonid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @return the value of jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public BigDecimal getChangeamount() {
|
||||
return changeamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @param changeamount the value for jsh_accounthead.ChangeAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setChangeamount(BigDecimal changeamount) {
|
||||
this.changeamount = changeamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @return the value of jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public BigDecimal getTotalprice() {
|
||||
return totalprice;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @param totalprice the value for jsh_accounthead.TotalPrice
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setTotalprice(BigDecimal totalprice) {
|
||||
this.totalprice = totalprice;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.AccountId
|
||||
*
|
||||
* @return the value of jsh_accounthead.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getAccountid() {
|
||||
return accountid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.AccountId
|
||||
*
|
||||
* @param accountid the value for jsh_accounthead.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setAccountid(Long accountid) {
|
||||
this.accountid = accountid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.BillNo
|
||||
*
|
||||
* @return the value of jsh_accounthead.BillNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getBillno() {
|
||||
return billno;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.BillNo
|
||||
*
|
||||
* @param billno the value for jsh_accounthead.BillNo
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setBillno(String billno) {
|
||||
this.billno = billno == null ? null : billno.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.BillTime
|
||||
*
|
||||
* @return the value of jsh_accounthead.BillTime
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Date getBilltime() {
|
||||
return billtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.BillTime
|
||||
*
|
||||
* @param billtime the value for jsh_accounthead.BillTime
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setBilltime(Date billtime) {
|
||||
this.billtime = billtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accounthead.Remark
|
||||
*
|
||||
* @return the value of jsh_accounthead.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accounthead.Remark
|
||||
*
|
||||
* @param remark the value for jsh_accounthead.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,136 +1,137 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class AccountHeadVo4ListEx {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String type;
|
||||
|
||||
private Long organid;
|
||||
|
||||
private Long handspersonid;
|
||||
|
||||
private Double changeamount;
|
||||
|
||||
private Double totalprice;
|
||||
|
||||
private Long accountid;
|
||||
|
||||
private String billno;
|
||||
|
||||
private Date billtime;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String organname;
|
||||
|
||||
private String handspersonname;
|
||||
|
||||
private String accountname;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Long getOrganid() {
|
||||
return organid;
|
||||
}
|
||||
|
||||
public void setOrganid(Long organid) {
|
||||
this.organid = organid;
|
||||
}
|
||||
|
||||
public Long getHandspersonid() {
|
||||
return handspersonid;
|
||||
}
|
||||
|
||||
public void setHandspersonid(Long handspersonid) {
|
||||
this.handspersonid = handspersonid;
|
||||
}
|
||||
|
||||
public Double getChangeamount() {
|
||||
return changeamount;
|
||||
}
|
||||
|
||||
public void setChangeamount(Double changeamount) {
|
||||
this.changeamount = changeamount;
|
||||
}
|
||||
|
||||
public Double getTotalprice() {
|
||||
return totalprice;
|
||||
}
|
||||
|
||||
public void setTotalprice(Double totalprice) {
|
||||
this.totalprice = totalprice;
|
||||
}
|
||||
|
||||
public Long getAccountid() {
|
||||
return accountid;
|
||||
}
|
||||
|
||||
public void setAccountid(Long accountid) {
|
||||
this.accountid = accountid;
|
||||
}
|
||||
|
||||
public String getBillno() {
|
||||
return billno;
|
||||
}
|
||||
|
||||
public void setBillno(String billno) {
|
||||
this.billno = billno;
|
||||
}
|
||||
|
||||
public Date getBilltime() {
|
||||
return billtime;
|
||||
}
|
||||
|
||||
public void setBilltime(Date billtime) {
|
||||
this.billtime = billtime;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getOrganname() {
|
||||
return organname;
|
||||
}
|
||||
|
||||
public void setOrganname(String organname) {
|
||||
this.organname = organname;
|
||||
}
|
||||
|
||||
public String getHandspersonname() {
|
||||
return handspersonname;
|
||||
}
|
||||
|
||||
public void setHandspersonname(String handspersonname) {
|
||||
this.handspersonname = handspersonname;
|
||||
}
|
||||
|
||||
public String getAccountname() {
|
||||
return accountname;
|
||||
}
|
||||
|
||||
public void setAccountname(String accountname) {
|
||||
this.accountname = accountname;
|
||||
}
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class AccountHeadVo4ListEx {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String type;
|
||||
|
||||
private Long organid;
|
||||
|
||||
private Long handspersonid;
|
||||
|
||||
private BigDecimal changeamount;
|
||||
|
||||
private BigDecimal totalprice;
|
||||
|
||||
private Long accountid;
|
||||
|
||||
private String billno;
|
||||
|
||||
private Date billtime;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String organname;
|
||||
|
||||
private String handspersonname;
|
||||
|
||||
private String accountname;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Long getOrganid() {
|
||||
return organid;
|
||||
}
|
||||
|
||||
public void setOrganid(Long organid) {
|
||||
this.organid = organid;
|
||||
}
|
||||
|
||||
public Long getHandspersonid() {
|
||||
return handspersonid;
|
||||
}
|
||||
|
||||
public void setHandspersonid(Long handspersonid) {
|
||||
this.handspersonid = handspersonid;
|
||||
}
|
||||
|
||||
public BigDecimal getChangeamount() {
|
||||
return changeamount;
|
||||
}
|
||||
|
||||
public void setChangeamount(BigDecimal changeamount) {
|
||||
this.changeamount = changeamount;
|
||||
}
|
||||
|
||||
public BigDecimal getTotalprice() {
|
||||
return totalprice;
|
||||
}
|
||||
|
||||
public void setTotalprice(BigDecimal totalprice) {
|
||||
this.totalprice = totalprice;
|
||||
}
|
||||
|
||||
public Long getAccountid() {
|
||||
return accountid;
|
||||
}
|
||||
|
||||
public void setAccountid(Long accountid) {
|
||||
this.accountid = accountid;
|
||||
}
|
||||
|
||||
public String getBillno() {
|
||||
return billno;
|
||||
}
|
||||
|
||||
public void setBillno(String billno) {
|
||||
this.billno = billno;
|
||||
}
|
||||
|
||||
public Date getBilltime() {
|
||||
return billtime;
|
||||
}
|
||||
|
||||
public void setBilltime(Date billtime) {
|
||||
this.billtime = billtime;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getOrganname() {
|
||||
return organname;
|
||||
}
|
||||
|
||||
public void setOrganname(String organname) {
|
||||
this.organname = organname;
|
||||
}
|
||||
|
||||
public String getHandspersonname() {
|
||||
return handspersonname;
|
||||
}
|
||||
|
||||
public void setHandspersonname(String handspersonname) {
|
||||
this.handspersonname = handspersonname;
|
||||
}
|
||||
|
||||
public String getAccountname() {
|
||||
return accountname;
|
||||
}
|
||||
|
||||
public void setAccountname(String accountname) {
|
||||
this.accountname = accountname;
|
||||
}
|
||||
}
|
||||
@@ -1,195 +1,197 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
public class AccountItem {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.HeaderId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long headerid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long accountid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long inoutitemid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.EachAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Double eachamount;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.Id
|
||||
*
|
||||
* @return the value of jsh_accountitem.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.Id
|
||||
*
|
||||
* @param id the value for jsh_accountitem.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.HeaderId
|
||||
*
|
||||
* @return the value of jsh_accountitem.HeaderId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getHeaderid() {
|
||||
return headerid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.HeaderId
|
||||
*
|
||||
* @param headerid the value for jsh_accountitem.HeaderId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setHeaderid(Long headerid) {
|
||||
this.headerid = headerid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.AccountId
|
||||
*
|
||||
* @return the value of jsh_accountitem.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getAccountid() {
|
||||
return accountid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.AccountId
|
||||
*
|
||||
* @param accountid the value for jsh_accountitem.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setAccountid(Long accountid) {
|
||||
this.accountid = accountid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @return the value of jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getInoutitemid() {
|
||||
return inoutitemid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @param inoutitemid the value for jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setInoutitemid(Long inoutitemid) {
|
||||
this.inoutitemid = inoutitemid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.EachAmount
|
||||
*
|
||||
* @return the value of jsh_accountitem.EachAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Double getEachamount() {
|
||||
return eachamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.EachAmount
|
||||
*
|
||||
* @param eachamount the value for jsh_accountitem.EachAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setEachamount(Double eachamount) {
|
||||
this.eachamount = eachamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.Remark
|
||||
*
|
||||
* @return the value of jsh_accountitem.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.Remark
|
||||
*
|
||||
* @param remark the value for jsh_accountitem.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class AccountItem {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.HeaderId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long headerid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long accountid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long inoutitemid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.EachAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private BigDecimal eachamount;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_accountitem.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.Id
|
||||
*
|
||||
* @return the value of jsh_accountitem.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.Id
|
||||
*
|
||||
* @param id the value for jsh_accountitem.Id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.HeaderId
|
||||
*
|
||||
* @return the value of jsh_accountitem.HeaderId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getHeaderid() {
|
||||
return headerid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.HeaderId
|
||||
*
|
||||
* @param headerid the value for jsh_accountitem.HeaderId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setHeaderid(Long headerid) {
|
||||
this.headerid = headerid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.AccountId
|
||||
*
|
||||
* @return the value of jsh_accountitem.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getAccountid() {
|
||||
return accountid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.AccountId
|
||||
*
|
||||
* @param accountid the value for jsh_accountitem.AccountId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setAccountid(Long accountid) {
|
||||
this.accountid = accountid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @return the value of jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getInoutitemid() {
|
||||
return inoutitemid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @param inoutitemid the value for jsh_accountitem.InOutItemId
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setInoutitemid(Long inoutitemid) {
|
||||
this.inoutitemid = inoutitemid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.EachAmount
|
||||
*
|
||||
* @return the value of jsh_accountitem.EachAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public BigDecimal getEachamount() {
|
||||
return eachamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.EachAmount
|
||||
*
|
||||
* @param eachamount the value for jsh_accountitem.EachAmount
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setEachamount(BigDecimal eachamount) {
|
||||
this.eachamount = eachamount;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_accountitem.Remark
|
||||
*
|
||||
* @return the value of jsh_accountitem.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_accountitem.Remark
|
||||
*
|
||||
* @param remark the value for jsh_accountitem.Remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,259 +1,261 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
public class Depot {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.address
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String address;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.warehousing
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Double warehousing;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.truckage
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Double truckage;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Integer type;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.sort
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String sort;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.id
|
||||
*
|
||||
* @return the value of jsh_depot.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.id
|
||||
*
|
||||
* @param id the value for jsh_depot.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.name
|
||||
*
|
||||
* @return the value of jsh_depot.name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.name
|
||||
*
|
||||
* @param name the value for jsh_depot.name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.address
|
||||
*
|
||||
* @return the value of jsh_depot.address
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.address
|
||||
*
|
||||
* @param address the value for jsh_depot.address
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setAddress(String address) {
|
||||
this.address = address == null ? null : address.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.warehousing
|
||||
*
|
||||
* @return the value of jsh_depot.warehousing
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Double getWarehousing() {
|
||||
return warehousing;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.warehousing
|
||||
*
|
||||
* @param warehousing the value for jsh_depot.warehousing
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setWarehousing(Double warehousing) {
|
||||
this.warehousing = warehousing;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.truckage
|
||||
*
|
||||
* @return the value of jsh_depot.truckage
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Double getTruckage() {
|
||||
return truckage;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.truckage
|
||||
*
|
||||
* @param truckage the value for jsh_depot.truckage
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setTruckage(Double truckage) {
|
||||
this.truckage = truckage;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.type
|
||||
*
|
||||
* @return the value of jsh_depot.type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.type
|
||||
*
|
||||
* @param type the value for jsh_depot.type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.sort
|
||||
*
|
||||
* @return the value of jsh_depot.sort
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.sort
|
||||
*
|
||||
* @param sort the value for jsh_depot.sort
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort == null ? null : sort.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.remark
|
||||
*
|
||||
* @return the value of jsh_depot.remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.remark
|
||||
*
|
||||
* @param remark the value for jsh_depot.remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class Depot {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.address
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String address;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.warehousing
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private BigDecimal warehousing;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.truckage
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private BigDecimal truckage;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Integer type;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.sort
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String sort;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_depot.remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.id
|
||||
*
|
||||
* @return the value of jsh_depot.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.id
|
||||
*
|
||||
* @param id the value for jsh_depot.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.name
|
||||
*
|
||||
* @return the value of jsh_depot.name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.name
|
||||
*
|
||||
* @param name the value for jsh_depot.name
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.address
|
||||
*
|
||||
* @return the value of jsh_depot.address
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.address
|
||||
*
|
||||
* @param address the value for jsh_depot.address
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setAddress(String address) {
|
||||
this.address = address == null ? null : address.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.warehousing
|
||||
*
|
||||
* @return the value of jsh_depot.warehousing
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public BigDecimal getWarehousing() {
|
||||
return warehousing;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.warehousing
|
||||
*
|
||||
* @param warehousing the value for jsh_depot.warehousing
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setWarehousing(BigDecimal warehousing) {
|
||||
this.warehousing = warehousing;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.truckage
|
||||
*
|
||||
* @return the value of jsh_depot.truckage
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public BigDecimal getTruckage() {
|
||||
return truckage;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.truckage
|
||||
*
|
||||
* @param truckage the value for jsh_depot.truckage
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setTruckage(BigDecimal truckage) {
|
||||
this.truckage = truckage;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.type
|
||||
*
|
||||
* @return the value of jsh_depot.type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.type
|
||||
*
|
||||
* @param type the value for jsh_depot.type
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.sort
|
||||
*
|
||||
* @return the value of jsh_depot.sort
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.sort
|
||||
*
|
||||
* @param sort the value for jsh_depot.sort
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort == null ? null : sort.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_depot.remark
|
||||
*
|
||||
* @return the value of jsh_depot.remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_depot.remark
|
||||
*
|
||||
* @param remark the value for jsh_depot.remark
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,256 +1,257 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class DepotItemVo4Material {
|
||||
|
||||
private Long id;
|
||||
|
||||
private Long headerid;
|
||||
|
||||
private Long materialid;
|
||||
|
||||
private String munit;
|
||||
|
||||
private Double opernumber;
|
||||
|
||||
private Double basicnumber;
|
||||
|
||||
private Double unitprice;
|
||||
|
||||
private Double taxunitprice;
|
||||
|
||||
private Double allprice;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String img;
|
||||
|
||||
private Double incidentals;
|
||||
|
||||
private Long depotid;
|
||||
|
||||
private Long anotherdepotid;
|
||||
|
||||
private Double taxrate;
|
||||
|
||||
private Double taxmoney;
|
||||
|
||||
private Double taxlastmoney;
|
||||
|
||||
private String otherfield1;
|
||||
|
||||
private String otherfield2;
|
||||
|
||||
private String otherfield3;
|
||||
|
||||
private String otherfield4;
|
||||
|
||||
private String otherfield5;
|
||||
|
||||
private String mtype;
|
||||
|
||||
private String mname;
|
||||
|
||||
private String mmodel;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getHeaderid() {
|
||||
return headerid;
|
||||
}
|
||||
|
||||
public void setHeaderid(Long headerid) {
|
||||
this.headerid = headerid;
|
||||
}
|
||||
|
||||
public Long getMaterialid() {
|
||||
return materialid;
|
||||
}
|
||||
|
||||
public void setMaterialid(Long materialid) {
|
||||
this.materialid = materialid;
|
||||
}
|
||||
|
||||
public String getMunit() {
|
||||
return munit;
|
||||
}
|
||||
|
||||
public void setMunit(String munit) {
|
||||
this.munit = munit;
|
||||
}
|
||||
|
||||
public Double getOpernumber() {
|
||||
return opernumber;
|
||||
}
|
||||
|
||||
public void setOpernumber(Double opernumber) {
|
||||
this.opernumber = opernumber;
|
||||
}
|
||||
|
||||
public Double getBasicnumber() {
|
||||
return basicnumber;
|
||||
}
|
||||
|
||||
public void setBasicnumber(Double basicnumber) {
|
||||
this.basicnumber = basicnumber;
|
||||
}
|
||||
|
||||
public Double getUnitprice() {
|
||||
return unitprice;
|
||||
}
|
||||
|
||||
public void setUnitprice(Double unitprice) {
|
||||
this.unitprice = unitprice;
|
||||
}
|
||||
|
||||
public Double getTaxunitprice() {
|
||||
return taxunitprice;
|
||||
}
|
||||
|
||||
public void setTaxunitprice(Double taxunitprice) {
|
||||
this.taxunitprice = taxunitprice;
|
||||
}
|
||||
|
||||
public Double getAllprice() {
|
||||
return allprice;
|
||||
}
|
||||
|
||||
public void setAllprice(Double allprice) {
|
||||
this.allprice = allprice;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getImg() {
|
||||
return img;
|
||||
}
|
||||
|
||||
public void setImg(String img) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
public Double getIncidentals() {
|
||||
return incidentals;
|
||||
}
|
||||
|
||||
public void setIncidentals(Double incidentals) {
|
||||
this.incidentals = incidentals;
|
||||
}
|
||||
|
||||
public Long getDepotid() {
|
||||
return depotid;
|
||||
}
|
||||
|
||||
public void setDepotid(Long depotid) {
|
||||
this.depotid = depotid;
|
||||
}
|
||||
|
||||
public Long getAnotherdepotid() {
|
||||
return anotherdepotid;
|
||||
}
|
||||
|
||||
public void setAnotherdepotid(Long anotherdepotid) {
|
||||
this.anotherdepotid = anotherdepotid;
|
||||
}
|
||||
|
||||
public Double getTaxrate() {
|
||||
return taxrate;
|
||||
}
|
||||
|
||||
public void setTaxrate(Double taxrate) {
|
||||
this.taxrate = taxrate;
|
||||
}
|
||||
|
||||
public Double getTaxmoney() {
|
||||
return taxmoney;
|
||||
}
|
||||
|
||||
public void setTaxmoney(Double taxmoney) {
|
||||
this.taxmoney = taxmoney;
|
||||
}
|
||||
|
||||
public Double getTaxlastmoney() {
|
||||
return taxlastmoney;
|
||||
}
|
||||
|
||||
public void setTaxlastmoney(Double taxlastmoney) {
|
||||
this.taxlastmoney = taxlastmoney;
|
||||
}
|
||||
|
||||
public String getOtherfield1() {
|
||||
return otherfield1;
|
||||
}
|
||||
|
||||
public void setOtherfield1(String otherfield1) {
|
||||
this.otherfield1 = otherfield1;
|
||||
}
|
||||
|
||||
public String getOtherfield2() {
|
||||
return otherfield2;
|
||||
}
|
||||
|
||||
public void setOtherfield2(String otherfield2) {
|
||||
this.otherfield2 = otherfield2;
|
||||
}
|
||||
|
||||
public String getOtherfield3() {
|
||||
return otherfield3;
|
||||
}
|
||||
|
||||
public void setOtherfield3(String otherfield3) {
|
||||
this.otherfield3 = otherfield3;
|
||||
}
|
||||
|
||||
public String getOtherfield4() {
|
||||
return otherfield4;
|
||||
}
|
||||
|
||||
public void setOtherfield4(String otherfield4) {
|
||||
this.otherfield4 = otherfield4;
|
||||
}
|
||||
|
||||
public String getOtherfield5() {
|
||||
return otherfield5;
|
||||
}
|
||||
|
||||
public void setOtherfield5(String otherfield5) {
|
||||
this.otherfield5 = otherfield5;
|
||||
}
|
||||
|
||||
public String getMtype() {
|
||||
return mtype;
|
||||
}
|
||||
|
||||
public void setMtype(String mtype) {
|
||||
this.mtype = mtype;
|
||||
}
|
||||
|
||||
public String getMname() {
|
||||
return mname;
|
||||
}
|
||||
|
||||
public void setMname(String mname) {
|
||||
this.mname = mname;
|
||||
}
|
||||
|
||||
public String getMmodel() {
|
||||
return mmodel;
|
||||
}
|
||||
|
||||
public void setMmodel(String mmodel) {
|
||||
this.mmodel = mmodel;
|
||||
}
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class DepotItemVo4Material {
|
||||
|
||||
private Long id;
|
||||
|
||||
private Long headerid;
|
||||
|
||||
private Long materialid;
|
||||
|
||||
private String munit;
|
||||
|
||||
private BigDecimal opernumber;
|
||||
|
||||
private BigDecimal basicnumber;
|
||||
|
||||
private BigDecimal unitprice;
|
||||
|
||||
private BigDecimal taxunitprice;
|
||||
|
||||
private BigDecimal allprice;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String img;
|
||||
|
||||
private BigDecimal incidentals;
|
||||
|
||||
private Long depotid;
|
||||
|
||||
private Long anotherdepotid;
|
||||
|
||||
private BigDecimal taxrate;
|
||||
|
||||
private BigDecimal taxmoney;
|
||||
|
||||
private BigDecimal taxlastmoney;
|
||||
|
||||
private String otherfield1;
|
||||
|
||||
private String otherfield2;
|
||||
|
||||
private String otherfield3;
|
||||
|
||||
private String otherfield4;
|
||||
|
||||
private String otherfield5;
|
||||
|
||||
private String mtype;
|
||||
|
||||
private String mname;
|
||||
|
||||
private String mmodel;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getHeaderid() {
|
||||
return headerid;
|
||||
}
|
||||
|
||||
public void setHeaderid(Long headerid) {
|
||||
this.headerid = headerid;
|
||||
}
|
||||
|
||||
public Long getMaterialid() {
|
||||
return materialid;
|
||||
}
|
||||
|
||||
public void setMaterialid(Long materialid) {
|
||||
this.materialid = materialid;
|
||||
}
|
||||
|
||||
public String getMunit() {
|
||||
return munit;
|
||||
}
|
||||
|
||||
public void setMunit(String munit) {
|
||||
this.munit = munit;
|
||||
}
|
||||
|
||||
public BigDecimal getOpernumber() {
|
||||
return opernumber;
|
||||
}
|
||||
|
||||
public void setOpernumber(BigDecimal opernumber) {
|
||||
this.opernumber = opernumber;
|
||||
}
|
||||
|
||||
public BigDecimal getBasicnumber() {
|
||||
return basicnumber;
|
||||
}
|
||||
|
||||
public void setBasicnumber(BigDecimal basicnumber) {
|
||||
this.basicnumber = basicnumber;
|
||||
}
|
||||
|
||||
public BigDecimal getUnitprice() {
|
||||
return unitprice;
|
||||
}
|
||||
|
||||
public void setUnitprice(BigDecimal unitprice) {
|
||||
this.unitprice = unitprice;
|
||||
}
|
||||
|
||||
public BigDecimal getTaxunitprice() {
|
||||
return taxunitprice;
|
||||
}
|
||||
|
||||
public void setTaxunitprice(BigDecimal taxunitprice) {
|
||||
this.taxunitprice = taxunitprice;
|
||||
}
|
||||
|
||||
public BigDecimal getAllprice() {
|
||||
return allprice;
|
||||
}
|
||||
|
||||
public void setAllprice(BigDecimal allprice) {
|
||||
this.allprice = allprice;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getImg() {
|
||||
return img;
|
||||
}
|
||||
|
||||
public void setImg(String img) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
public BigDecimal getIncidentals() {
|
||||
return incidentals;
|
||||
}
|
||||
|
||||
public void setIncidentals(BigDecimal incidentals) {
|
||||
this.incidentals = incidentals;
|
||||
}
|
||||
|
||||
public Long getDepotid() {
|
||||
return depotid;
|
||||
}
|
||||
|
||||
public void setDepotid(Long depotid) {
|
||||
this.depotid = depotid;
|
||||
}
|
||||
|
||||
public Long getAnotherdepotid() {
|
||||
return anotherdepotid;
|
||||
}
|
||||
|
||||
public void setAnotherdepotid(Long anotherdepotid) {
|
||||
this.anotherdepotid = anotherdepotid;
|
||||
}
|
||||
|
||||
public BigDecimal getTaxrate() {
|
||||
return taxrate;
|
||||
}
|
||||
|
||||
public void setTaxrate(BigDecimal taxrate) {
|
||||
this.taxrate = taxrate;
|
||||
}
|
||||
|
||||
public BigDecimal getTaxmoney() {
|
||||
return taxmoney;
|
||||
}
|
||||
|
||||
public void setTaxmoney(BigDecimal taxmoney) {
|
||||
this.taxmoney = taxmoney;
|
||||
}
|
||||
|
||||
public BigDecimal getTaxlastmoney() {
|
||||
return taxlastmoney;
|
||||
}
|
||||
|
||||
public void setTaxlastmoney(BigDecimal taxlastmoney) {
|
||||
this.taxlastmoney = taxlastmoney;
|
||||
}
|
||||
|
||||
public String getOtherfield1() {
|
||||
return otherfield1;
|
||||
}
|
||||
|
||||
public void setOtherfield1(String otherfield1) {
|
||||
this.otherfield1 = otherfield1;
|
||||
}
|
||||
|
||||
public String getOtherfield2() {
|
||||
return otherfield2;
|
||||
}
|
||||
|
||||
public void setOtherfield2(String otherfield2) {
|
||||
this.otherfield2 = otherfield2;
|
||||
}
|
||||
|
||||
public String getOtherfield3() {
|
||||
return otherfield3;
|
||||
}
|
||||
|
||||
public void setOtherfield3(String otherfield3) {
|
||||
this.otherfield3 = otherfield3;
|
||||
}
|
||||
|
||||
public String getOtherfield4() {
|
||||
return otherfield4;
|
||||
}
|
||||
|
||||
public void setOtherfield4(String otherfield4) {
|
||||
this.otherfield4 = otherfield4;
|
||||
}
|
||||
|
||||
public String getOtherfield5() {
|
||||
return otherfield5;
|
||||
}
|
||||
|
||||
public void setOtherfield5(String otherfield5) {
|
||||
this.otherfield5 = otherfield5;
|
||||
}
|
||||
|
||||
public String getMtype() {
|
||||
return mtype;
|
||||
}
|
||||
|
||||
public void setMtype(String mtype) {
|
||||
this.mtype = mtype;
|
||||
}
|
||||
|
||||
public String getMname() {
|
||||
return mname;
|
||||
}
|
||||
|
||||
public void setMname(String mname) {
|
||||
this.mname = mname;
|
||||
}
|
||||
|
||||
public String getMmodel() {
|
||||
return mmodel;
|
||||
}
|
||||
|
||||
public void setMmodel(String mmodel) {
|
||||
this.mmodel = mmodel;
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class DepotItemVo4WithInfoEx {
|
||||
|
||||
private Long id;
|
||||
@@ -10,31 +12,31 @@ public class DepotItemVo4WithInfoEx {
|
||||
|
||||
private String munit;
|
||||
|
||||
private Double opernumber;
|
||||
private BigDecimal opernumber;
|
||||
|
||||
private Double basicnumber;
|
||||
private BigDecimal basicnumber;
|
||||
|
||||
private Double unitprice;
|
||||
private BigDecimal unitprice;
|
||||
|
||||
private Double taxunitprice;
|
||||
private BigDecimal taxunitprice;
|
||||
|
||||
private Double allprice;
|
||||
private BigDecimal allprice;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String img;
|
||||
|
||||
private Double incidentals;
|
||||
private BigDecimal incidentals;
|
||||
|
||||
private Long depotid;
|
||||
|
||||
private Long anotherdepotid;
|
||||
|
||||
private Double taxrate;
|
||||
private BigDecimal taxrate;
|
||||
|
||||
private Double taxmoney;
|
||||
private BigDecimal taxmoney;
|
||||
|
||||
private Double taxlastmoney;
|
||||
private BigDecimal taxlastmoney;
|
||||
|
||||
private String otherfield1;
|
||||
|
||||
@@ -108,43 +110,43 @@ public class DepotItemVo4WithInfoEx {
|
||||
this.munit = munit;
|
||||
}
|
||||
|
||||
public Double getOpernumber() {
|
||||
public BigDecimal getOpernumber() {
|
||||
return opernumber;
|
||||
}
|
||||
|
||||
public void setOpernumber(Double opernumber) {
|
||||
public void setOpernumber(BigDecimal opernumber) {
|
||||
this.opernumber = opernumber;
|
||||
}
|
||||
|
||||
public Double getBasicnumber() {
|
||||
public BigDecimal getBasicnumber() {
|
||||
return basicnumber;
|
||||
}
|
||||
|
||||
public void setBasicnumber(Double basicnumber) {
|
||||
public void setBasicnumber(BigDecimal basicnumber) {
|
||||
this.basicnumber = basicnumber;
|
||||
}
|
||||
|
||||
public Double getUnitprice() {
|
||||
public BigDecimal getUnitprice() {
|
||||
return unitprice;
|
||||
}
|
||||
|
||||
public void setUnitprice(Double unitprice) {
|
||||
public void setUnitprice(BigDecimal unitprice) {
|
||||
this.unitprice = unitprice;
|
||||
}
|
||||
|
||||
public Double getTaxunitprice() {
|
||||
public BigDecimal getTaxunitprice() {
|
||||
return taxunitprice;
|
||||
}
|
||||
|
||||
public void setTaxunitprice(Double taxunitprice) {
|
||||
public void setTaxunitprice(BigDecimal taxunitprice) {
|
||||
this.taxunitprice = taxunitprice;
|
||||
}
|
||||
|
||||
public Double getAllprice() {
|
||||
public BigDecimal getAllprice() {
|
||||
return allprice;
|
||||
}
|
||||
|
||||
public void setAllprice(Double allprice) {
|
||||
public void setAllprice(BigDecimal allprice) {
|
||||
this.allprice = allprice;
|
||||
}
|
||||
|
||||
@@ -164,11 +166,11 @@ public class DepotItemVo4WithInfoEx {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
public Double getIncidentals() {
|
||||
public BigDecimal getIncidentals() {
|
||||
return incidentals;
|
||||
}
|
||||
|
||||
public void setIncidentals(Double incidentals) {
|
||||
public void setIncidentals(BigDecimal incidentals) {
|
||||
this.incidentals = incidentals;
|
||||
}
|
||||
|
||||
@@ -188,27 +190,27 @@ public class DepotItemVo4WithInfoEx {
|
||||
this.anotherdepotid = anotherdepotid;
|
||||
}
|
||||
|
||||
public Double getTaxrate() {
|
||||
public BigDecimal getTaxrate() {
|
||||
return taxrate;
|
||||
}
|
||||
|
||||
public void setTaxrate(Double taxrate) {
|
||||
public void setTaxrate(BigDecimal taxrate) {
|
||||
this.taxrate = taxrate;
|
||||
}
|
||||
|
||||
public Double getTaxmoney() {
|
||||
public BigDecimal getTaxmoney() {
|
||||
return taxmoney;
|
||||
}
|
||||
|
||||
public void setTaxmoney(Double taxmoney) {
|
||||
public void setTaxmoney(BigDecimal taxmoney) {
|
||||
this.taxmoney = taxmoney;
|
||||
}
|
||||
|
||||
public Double getTaxlastmoney() {
|
||||
public BigDecimal getTaxlastmoney() {
|
||||
return taxlastmoney;
|
||||
}
|
||||
|
||||
public void setTaxlastmoney(Double taxlastmoney) {
|
||||
public void setTaxlastmoney(BigDecimal taxlastmoney) {
|
||||
this.taxlastmoney = taxlastmoney;
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,264 +1,266 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
public class MaterialVo4Unit {
|
||||
|
||||
private Long id;
|
||||
|
||||
private Long categoryid;
|
||||
|
||||
private String name;
|
||||
|
||||
private String mfrs;
|
||||
|
||||
private Double packing;
|
||||
|
||||
private Double safetystock;
|
||||
|
||||
private String model;
|
||||
|
||||
private String standard;
|
||||
|
||||
private String color;
|
||||
|
||||
private String unit;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Double retailprice;
|
||||
|
||||
private Double lowprice;
|
||||
|
||||
private Double presetpriceone;
|
||||
|
||||
private Double presetpricetwo;
|
||||
|
||||
private Long unitid;
|
||||
|
||||
private String firstoutunit;
|
||||
|
||||
private String firstinunit;
|
||||
|
||||
private String pricestrategy;
|
||||
|
||||
private Boolean enabled;
|
||||
|
||||
private String otherfield1;
|
||||
|
||||
private String otherfield2;
|
||||
|
||||
private String otherfield3;
|
||||
|
||||
private String unitName;
|
||||
|
||||
private String categoryName;
|
||||
|
||||
private String materialOther;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getCategoryid() {
|
||||
return categoryid;
|
||||
}
|
||||
|
||||
public void setCategoryid(Long categoryid) {
|
||||
this.categoryid = categoryid;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getMfrs() {
|
||||
return mfrs;
|
||||
}
|
||||
|
||||
public void setMfrs(String mfrs) {
|
||||
this.mfrs = mfrs;
|
||||
}
|
||||
|
||||
public Double getPacking() {
|
||||
return packing;
|
||||
}
|
||||
|
||||
public void setPacking(Double packing) {
|
||||
this.packing = packing;
|
||||
}
|
||||
|
||||
public Double getSafetystock() {
|
||||
return safetystock;
|
||||
}
|
||||
|
||||
public void setSafetystock(Double safetystock) {
|
||||
this.safetystock = safetystock;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
this.model = model;
|
||||
}
|
||||
|
||||
public String getStandard() {
|
||||
return standard;
|
||||
}
|
||||
|
||||
public void setStandard(String standard) {
|
||||
this.standard = standard;
|
||||
}
|
||||
|
||||
public String getColor() {
|
||||
return color;
|
||||
}
|
||||
|
||||
public void setColor(String color) {
|
||||
this.color = color;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
this.unit = unit;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Double getRetailprice() {
|
||||
return retailprice;
|
||||
}
|
||||
|
||||
public void setRetailprice(Double retailprice) {
|
||||
this.retailprice = retailprice;
|
||||
}
|
||||
|
||||
public Double getLowprice() {
|
||||
return lowprice;
|
||||
}
|
||||
|
||||
public void setLowprice(Double lowprice) {
|
||||
this.lowprice = lowprice;
|
||||
}
|
||||
|
||||
public Double getPresetpriceone() {
|
||||
return presetpriceone;
|
||||
}
|
||||
|
||||
public void setPresetpriceone(Double presetpriceone) {
|
||||
this.presetpriceone = presetpriceone;
|
||||
}
|
||||
|
||||
public Double getPresetpricetwo() {
|
||||
return presetpricetwo;
|
||||
}
|
||||
|
||||
public void setPresetpricetwo(Double presetpricetwo) {
|
||||
this.presetpricetwo = presetpricetwo;
|
||||
}
|
||||
|
||||
public Long getUnitid() {
|
||||
return unitid;
|
||||
}
|
||||
|
||||
public void setUnitid(Long unitid) {
|
||||
this.unitid = unitid;
|
||||
}
|
||||
|
||||
public String getFirstoutunit() {
|
||||
return firstoutunit;
|
||||
}
|
||||
|
||||
public void setFirstoutunit(String firstoutunit) {
|
||||
this.firstoutunit = firstoutunit;
|
||||
}
|
||||
|
||||
public String getFirstinunit() {
|
||||
return firstinunit;
|
||||
}
|
||||
|
||||
public void setFirstinunit(String firstinunit) {
|
||||
this.firstinunit = firstinunit;
|
||||
}
|
||||
|
||||
public String getPricestrategy() {
|
||||
return pricestrategy;
|
||||
}
|
||||
|
||||
public void setPricestrategy(String pricestrategy) {
|
||||
this.pricestrategy = pricestrategy;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public String getOtherfield1() {
|
||||
return otherfield1;
|
||||
}
|
||||
|
||||
public void setOtherfield1(String otherfield1) {
|
||||
this.otherfield1 = otherfield1;
|
||||
}
|
||||
|
||||
public String getOtherfield2() {
|
||||
return otherfield2;
|
||||
}
|
||||
|
||||
public void setOtherfield2(String otherfield2) {
|
||||
this.otherfield2 = otherfield2;
|
||||
}
|
||||
|
||||
public String getOtherfield3() {
|
||||
return otherfield3;
|
||||
}
|
||||
|
||||
public void setOtherfield3(String otherfield3) {
|
||||
this.otherfield3 = otherfield3;
|
||||
}
|
||||
|
||||
public String getUnitName() {
|
||||
return unitName;
|
||||
}
|
||||
|
||||
public void setUnitName(String unitName) {
|
||||
this.unitName = unitName;
|
||||
}
|
||||
|
||||
public String getCategoryName() {
|
||||
return categoryName;
|
||||
}
|
||||
|
||||
public void setCategoryName(String categoryName) {
|
||||
this.categoryName = categoryName;
|
||||
}
|
||||
|
||||
public String getMaterialOther() {
|
||||
return materialOther;
|
||||
}
|
||||
|
||||
public void setMaterialOther(String materialOther) {
|
||||
this.materialOther = materialOther;
|
||||
}
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class MaterialVo4Unit {
|
||||
|
||||
private Long id;
|
||||
|
||||
private Long categoryid;
|
||||
|
||||
private String name;
|
||||
|
||||
private String mfrs;
|
||||
|
||||
private BigDecimal packing;
|
||||
|
||||
private BigDecimal safetystock;
|
||||
|
||||
private String model;
|
||||
|
||||
private String standard;
|
||||
|
||||
private String color;
|
||||
|
||||
private String unit;
|
||||
|
||||
private String remark;
|
||||
|
||||
private BigDecimal retailprice;
|
||||
|
||||
private BigDecimal lowprice;
|
||||
|
||||
private BigDecimal presetpriceone;
|
||||
|
||||
private BigDecimal presetpricetwo;
|
||||
|
||||
private Long unitid;
|
||||
|
||||
private String firstoutunit;
|
||||
|
||||
private String firstinunit;
|
||||
|
||||
private String pricestrategy;
|
||||
|
||||
private Boolean enabled;
|
||||
|
||||
private String otherfield1;
|
||||
|
||||
private String otherfield2;
|
||||
|
||||
private String otherfield3;
|
||||
|
||||
private String unitName;
|
||||
|
||||
private String categoryName;
|
||||
|
||||
private String materialOther;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getCategoryid() {
|
||||
return categoryid;
|
||||
}
|
||||
|
||||
public void setCategoryid(Long categoryid) {
|
||||
this.categoryid = categoryid;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getMfrs() {
|
||||
return mfrs;
|
||||
}
|
||||
|
||||
public void setMfrs(String mfrs) {
|
||||
this.mfrs = mfrs;
|
||||
}
|
||||
|
||||
public BigDecimal getPacking() {
|
||||
return packing;
|
||||
}
|
||||
|
||||
public void setPacking(BigDecimal packing) {
|
||||
this.packing = packing;
|
||||
}
|
||||
|
||||
public BigDecimal getSafetystock() {
|
||||
return safetystock;
|
||||
}
|
||||
|
||||
public void setSafetystock(BigDecimal safetystock) {
|
||||
this.safetystock = safetystock;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
this.model = model;
|
||||
}
|
||||
|
||||
public String getStandard() {
|
||||
return standard;
|
||||
}
|
||||
|
||||
public void setStandard(String standard) {
|
||||
this.standard = standard;
|
||||
}
|
||||
|
||||
public String getColor() {
|
||||
return color;
|
||||
}
|
||||
|
||||
public void setColor(String color) {
|
||||
this.color = color;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
this.unit = unit;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public BigDecimal getRetailprice() {
|
||||
return retailprice;
|
||||
}
|
||||
|
||||
public void setRetailprice(BigDecimal retailprice) {
|
||||
this.retailprice = retailprice;
|
||||
}
|
||||
|
||||
public BigDecimal getLowprice() {
|
||||
return lowprice;
|
||||
}
|
||||
|
||||
public void setLowprice(BigDecimal lowprice) {
|
||||
this.lowprice = lowprice;
|
||||
}
|
||||
|
||||
public BigDecimal getPresetpriceone() {
|
||||
return presetpriceone;
|
||||
}
|
||||
|
||||
public void setPresetpriceone(BigDecimal presetpriceone) {
|
||||
this.presetpriceone = presetpriceone;
|
||||
}
|
||||
|
||||
public BigDecimal getPresetpricetwo() {
|
||||
return presetpricetwo;
|
||||
}
|
||||
|
||||
public void setPresetpricetwo(BigDecimal presetpricetwo) {
|
||||
this.presetpricetwo = presetpricetwo;
|
||||
}
|
||||
|
||||
public Long getUnitid() {
|
||||
return unitid;
|
||||
}
|
||||
|
||||
public void setUnitid(Long unitid) {
|
||||
this.unitid = unitid;
|
||||
}
|
||||
|
||||
public String getFirstoutunit() {
|
||||
return firstoutunit;
|
||||
}
|
||||
|
||||
public void setFirstoutunit(String firstoutunit) {
|
||||
this.firstoutunit = firstoutunit;
|
||||
}
|
||||
|
||||
public String getFirstinunit() {
|
||||
return firstinunit;
|
||||
}
|
||||
|
||||
public void setFirstinunit(String firstinunit) {
|
||||
this.firstinunit = firstinunit;
|
||||
}
|
||||
|
||||
public String getPricestrategy() {
|
||||
return pricestrategy;
|
||||
}
|
||||
|
||||
public void setPricestrategy(String pricestrategy) {
|
||||
this.pricestrategy = pricestrategy;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public String getOtherfield1() {
|
||||
return otherfield1;
|
||||
}
|
||||
|
||||
public void setOtherfield1(String otherfield1) {
|
||||
this.otherfield1 = otherfield1;
|
||||
}
|
||||
|
||||
public String getOtherfield2() {
|
||||
return otherfield2;
|
||||
}
|
||||
|
||||
public void setOtherfield2(String otherfield2) {
|
||||
this.otherfield2 = otherfield2;
|
||||
}
|
||||
|
||||
public String getOtherfield3() {
|
||||
return otherfield3;
|
||||
}
|
||||
|
||||
public void setOtherfield3(String otherfield3) {
|
||||
this.otherfield3 = otherfield3;
|
||||
}
|
||||
|
||||
public String getUnitName() {
|
||||
return unitName;
|
||||
}
|
||||
|
||||
public void setUnitName(String unitName) {
|
||||
this.unitName = unitName;
|
||||
}
|
||||
|
||||
public String getCategoryName() {
|
||||
return categoryName;
|
||||
}
|
||||
|
||||
public void setCategoryName(String categoryName) {
|
||||
this.categoryName = categoryName;
|
||||
}
|
||||
|
||||
public String getMaterialOther() {
|
||||
return materialOther;
|
||||
}
|
||||
|
||||
public void setMaterialOther(String materialOther) {
|
||||
this.materialOther = materialOther;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user