更新后端,采用Springboot+mybatis
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
public class AccountItemVo4List {
|
||||
|
||||
private Long id;
|
||||
|
||||
private Long headerid;
|
||||
|
||||
private Long accountid;
|
||||
|
||||
private Long inoutitemid;
|
||||
|
||||
private Double eachamount;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String accountName;
|
||||
|
||||
private String inOutItemName;
|
||||
|
||||
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 getAccountid() {
|
||||
return accountid;
|
||||
}
|
||||
|
||||
public void setAccountid(Long accountid) {
|
||||
this.accountid = accountid;
|
||||
}
|
||||
|
||||
public Long getInoutitemid() {
|
||||
return inoutitemid;
|
||||
}
|
||||
|
||||
public void setInoutitemid(Long inoutitemid) {
|
||||
this.inoutitemid = inoutitemid;
|
||||
}
|
||||
|
||||
public Double getEachamount() {
|
||||
return eachamount;
|
||||
}
|
||||
|
||||
public void setEachamount(Double eachamount) {
|
||||
this.eachamount = eachamount;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
public void setAccountName(String accountName) {
|
||||
this.accountName = accountName;
|
||||
}
|
||||
|
||||
public String getInOutItemName() {
|
||||
return inOutItemName;
|
||||
}
|
||||
|
||||
public void setInOutItemName(String inOutItemName) {
|
||||
this.inOutItemName = inOutItemName;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,84 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
public class AccountVo4InOutList {
|
||||
|
||||
private String number;
|
||||
|
||||
private String type;
|
||||
|
||||
private String supplierName;
|
||||
|
||||
private Double changeAmount;
|
||||
|
||||
private Double balance;
|
||||
|
||||
private String operTime;
|
||||
|
||||
private String aList;
|
||||
|
||||
private String amList;
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getSupplierName() {
|
||||
return supplierName;
|
||||
}
|
||||
|
||||
public void setSupplierName(String supplierName) {
|
||||
this.supplierName = supplierName;
|
||||
}
|
||||
|
||||
public Double getChangeAmount() {
|
||||
return changeAmount;
|
||||
}
|
||||
|
||||
public void setChangeAmount(Double changeAmount) {
|
||||
this.changeAmount = changeAmount;
|
||||
}
|
||||
|
||||
public Double getBalance() {
|
||||
return balance;
|
||||
}
|
||||
|
||||
public void setBalance(Double balance) {
|
||||
this.balance = balance;
|
||||
}
|
||||
|
||||
public String getOperTime() {
|
||||
return operTime;
|
||||
}
|
||||
|
||||
public void setOperTime(String operTime) {
|
||||
this.operTime = operTime;
|
||||
}
|
||||
|
||||
public String getaList() {
|
||||
return aList;
|
||||
}
|
||||
|
||||
public void setaList(String aList) {
|
||||
this.aList = aList;
|
||||
}
|
||||
|
||||
public String getAmList() {
|
||||
return amList;
|
||||
}
|
||||
|
||||
public void setAmList(String amList) {
|
||||
this.amList = amList;
|
||||
}
|
||||
}
|
||||
84
src/main/java/com/jsh/erp/datasource/vo/AccountVo4List.java
Normal file
84
src/main/java/com/jsh/erp/datasource/vo/AccountVo4List.java
Normal file
@@ -0,0 +1,84 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
public class AccountVo4List {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String serialno;
|
||||
|
||||
private Double initialamount;
|
||||
|
||||
private Double currentamount;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Boolean isdefault;
|
||||
|
||||
private String thismonthamount;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getSerialno() {
|
||||
return serialno;
|
||||
}
|
||||
|
||||
public void setSerialno(String serialno) {
|
||||
this.serialno = serialno;
|
||||
}
|
||||
|
||||
public Double getInitialamount() {
|
||||
return initialamount;
|
||||
}
|
||||
|
||||
public void setInitialamount(Double initialamount) {
|
||||
this.initialamount = initialamount;
|
||||
}
|
||||
|
||||
public Double getCurrentamount() {
|
||||
return currentamount;
|
||||
}
|
||||
|
||||
public void setCurrentamount(Double currentamount) {
|
||||
this.currentamount = currentamount;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Boolean getIsdefault() {
|
||||
return isdefault;
|
||||
}
|
||||
|
||||
public void setIsdefault(Boolean isdefault) {
|
||||
this.isdefault = isdefault;
|
||||
}
|
||||
|
||||
public String getThismonthamount() {
|
||||
return thismonthamount;
|
||||
}
|
||||
|
||||
public void setThismonthamount(String thismonthamount) {
|
||||
this.thismonthamount = thismonthamount;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class DepotHeadVo4InDetail {
|
||||
|
||||
private String Number;
|
||||
|
||||
private String MName;
|
||||
|
||||
private String Model;
|
||||
|
||||
private Double UnitPrice;
|
||||
|
||||
private Double OperNumber;
|
||||
|
||||
private Double AllPrice;
|
||||
|
||||
private String SName;
|
||||
|
||||
private String DName;
|
||||
|
||||
private String OperTime;
|
||||
|
||||
private String NewType;
|
||||
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
|
||||
public String getMName() {
|
||||
return MName;
|
||||
}
|
||||
|
||||
public void setMName(String MName) {
|
||||
this.MName = MName;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return Model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
Model = model;
|
||||
}
|
||||
|
||||
public Double getUnitPrice() {
|
||||
return UnitPrice;
|
||||
}
|
||||
|
||||
public void setUnitPrice(Double unitPrice) {
|
||||
UnitPrice = unitPrice;
|
||||
}
|
||||
|
||||
public Double getOperNumber() {
|
||||
return OperNumber;
|
||||
}
|
||||
|
||||
public void setOperNumber(Double operNumber) {
|
||||
OperNumber = operNumber;
|
||||
}
|
||||
|
||||
public Double getAllPrice() {
|
||||
return AllPrice;
|
||||
}
|
||||
|
||||
public void setAllPrice(Double allPrice) {
|
||||
AllPrice = allPrice;
|
||||
}
|
||||
|
||||
public String getSName() {
|
||||
return SName;
|
||||
}
|
||||
|
||||
public void setSName(String SName) {
|
||||
this.SName = SName;
|
||||
}
|
||||
|
||||
public String getDName() {
|
||||
return DName;
|
||||
}
|
||||
|
||||
public void setDName(String DName) {
|
||||
this.DName = DName;
|
||||
}
|
||||
|
||||
public String getOperTime() {
|
||||
return OperTime;
|
||||
}
|
||||
|
||||
public void setOperTime(String operTime) {
|
||||
OperTime = operTime;
|
||||
}
|
||||
|
||||
public String getNewType() {
|
||||
return NewType;
|
||||
}
|
||||
|
||||
public void setNewType(String newType) {
|
||||
NewType = newType;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
|
||||
public class DepotHeadVo4InOutMCount {
|
||||
|
||||
private Long MaterialId;
|
||||
|
||||
private String mName;
|
||||
|
||||
private String Model;
|
||||
|
||||
private String categoryName;
|
||||
|
||||
private Double numSum;
|
||||
|
||||
private Double priceSum;
|
||||
|
||||
public Long getMaterialId() {
|
||||
return MaterialId;
|
||||
}
|
||||
|
||||
public void setMaterialId(Long materialId) {
|
||||
MaterialId = materialId;
|
||||
}
|
||||
|
||||
public String getmName() {
|
||||
return mName;
|
||||
}
|
||||
|
||||
public void setmName(String mName) {
|
||||
this.mName = mName;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return Model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
Model = model;
|
||||
}
|
||||
|
||||
public String getCategoryName() {
|
||||
return categoryName;
|
||||
}
|
||||
|
||||
public void setCategoryName(String categoryName) {
|
||||
this.categoryName = categoryName;
|
||||
}
|
||||
|
||||
public Double getNumSum() {
|
||||
return numSum;
|
||||
}
|
||||
|
||||
public void setNumSum(Double numSum) {
|
||||
this.numSum = numSum;
|
||||
}
|
||||
|
||||
public Double getPriceSum() {
|
||||
return priceSum;
|
||||
}
|
||||
|
||||
public void setPriceSum(Double priceSum) {
|
||||
this.priceSum = priceSum;
|
||||
}
|
||||
}
|
||||
346
src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4List.java
Normal file
346
src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4List.java
Normal file
@@ -0,0 +1,346 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class DepotHeadVo4List {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String type;
|
||||
|
||||
private String subtype;
|
||||
|
||||
private Long projectid;
|
||||
|
||||
private String defaultnumber;
|
||||
|
||||
private String number;
|
||||
|
||||
private String operpersonname;
|
||||
|
||||
private Date createtime;
|
||||
|
||||
private Date opertime;
|
||||
|
||||
private Long organid;
|
||||
|
||||
private Long handspersonid;
|
||||
|
||||
private Long accountid;
|
||||
|
||||
private Double changeamount;
|
||||
|
||||
private Long allocationprojectid;
|
||||
|
||||
private Double totalprice;
|
||||
|
||||
private String paytype;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String salesman;
|
||||
|
||||
private String accountidlist;
|
||||
|
||||
private String accountmoneylist;
|
||||
|
||||
private Double discount;
|
||||
|
||||
private Double discountmoney;
|
||||
|
||||
private Double discountlastmoney;
|
||||
|
||||
private Double othermoney;
|
||||
|
||||
private String othermoneylist;
|
||||
|
||||
private String othermoneyitem;
|
||||
|
||||
private Integer accountday;
|
||||
|
||||
private Boolean status;
|
||||
|
||||
private String projectName;
|
||||
|
||||
private String organName;
|
||||
|
||||
private String handsPersonName;
|
||||
|
||||
private String accountName;
|
||||
|
||||
private String allocationProjectName;
|
||||
|
||||
private String materialsList;
|
||||
|
||||
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 String getSubtype() {
|
||||
return subtype;
|
||||
}
|
||||
|
||||
public void setSubtype(String subtype) {
|
||||
this.subtype = subtype;
|
||||
}
|
||||
|
||||
public Long getProjectid() {
|
||||
return projectid;
|
||||
}
|
||||
|
||||
public void setProjectid(Long projectid) {
|
||||
this.projectid = projectid;
|
||||
}
|
||||
|
||||
public String getDefaultnumber() {
|
||||
return defaultnumber;
|
||||
}
|
||||
|
||||
public void setDefaultnumber(String defaultnumber) {
|
||||
this.defaultnumber = defaultnumber;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getOperpersonname() {
|
||||
return operpersonname;
|
||||
}
|
||||
|
||||
public void setOperpersonname(String operpersonname) {
|
||||
this.operpersonname = operpersonname;
|
||||
}
|
||||
|
||||
public Date getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Date createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public Date getOpertime() {
|
||||
return opertime;
|
||||
}
|
||||
|
||||
public void setOpertime(Date opertime) {
|
||||
this.opertime = opertime;
|
||||
}
|
||||
|
||||
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 Long getAccountid() {
|
||||
return accountid;
|
||||
}
|
||||
|
||||
public void setAccountid(Long accountid) {
|
||||
this.accountid = accountid;
|
||||
}
|
||||
|
||||
public Double getChangeamount() {
|
||||
return changeamount;
|
||||
}
|
||||
|
||||
public void setChangeamount(Double changeamount) {
|
||||
this.changeamount = changeamount;
|
||||
}
|
||||
|
||||
public Long getAllocationprojectid() {
|
||||
return allocationprojectid;
|
||||
}
|
||||
|
||||
public void setAllocationprojectid(Long allocationprojectid) {
|
||||
this.allocationprojectid = allocationprojectid;
|
||||
}
|
||||
|
||||
public Double getTotalprice() {
|
||||
return totalprice;
|
||||
}
|
||||
|
||||
public void setTotalprice(Double totalprice) {
|
||||
this.totalprice = totalprice;
|
||||
}
|
||||
|
||||
public String getPaytype() {
|
||||
return paytype;
|
||||
}
|
||||
|
||||
public void setPaytype(String paytype) {
|
||||
this.paytype = paytype;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getSalesman() {
|
||||
return salesman;
|
||||
}
|
||||
|
||||
public void setSalesman(String salesman) {
|
||||
this.salesman = salesman;
|
||||
}
|
||||
|
||||
public String getAccountidlist() {
|
||||
return accountidlist;
|
||||
}
|
||||
|
||||
public void setAccountidlist(String accountidlist) {
|
||||
this.accountidlist = accountidlist;
|
||||
}
|
||||
|
||||
public String getAccountmoneylist() {
|
||||
return accountmoneylist;
|
||||
}
|
||||
|
||||
public void setAccountmoneylist(String accountmoneylist) {
|
||||
this.accountmoneylist = accountmoneylist;
|
||||
}
|
||||
|
||||
public Double getDiscount() {
|
||||
return discount;
|
||||
}
|
||||
|
||||
public void setDiscount(Double discount) {
|
||||
this.discount = discount;
|
||||
}
|
||||
|
||||
public Double getDiscountmoney() {
|
||||
return discountmoney;
|
||||
}
|
||||
|
||||
public void setDiscountmoney(Double discountmoney) {
|
||||
this.discountmoney = discountmoney;
|
||||
}
|
||||
|
||||
public Double getDiscountlastmoney() {
|
||||
return discountlastmoney;
|
||||
}
|
||||
|
||||
public void setDiscountlastmoney(Double discountlastmoney) {
|
||||
this.discountlastmoney = discountlastmoney;
|
||||
}
|
||||
|
||||
public Double getOthermoney() {
|
||||
return othermoney;
|
||||
}
|
||||
|
||||
public void setOthermoney(Double othermoney) {
|
||||
this.othermoney = othermoney;
|
||||
}
|
||||
|
||||
public String getOthermoneylist() {
|
||||
return othermoneylist;
|
||||
}
|
||||
|
||||
public void setOthermoneylist(String othermoneylist) {
|
||||
this.othermoneylist = othermoneylist;
|
||||
}
|
||||
|
||||
public String getOthermoneyitem() {
|
||||
return othermoneyitem;
|
||||
}
|
||||
|
||||
public void setOthermoneyitem(String othermoneyitem) {
|
||||
this.othermoneyitem = othermoneyitem;
|
||||
}
|
||||
|
||||
public Integer getAccountday() {
|
||||
return accountday;
|
||||
}
|
||||
|
||||
public void setAccountday(Integer accountday) {
|
||||
this.accountday = accountday;
|
||||
}
|
||||
|
||||
public Boolean getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Boolean status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getProjectName() {
|
||||
return projectName;
|
||||
}
|
||||
|
||||
public void setProjectName(String projectName) {
|
||||
this.projectName = projectName;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public String getAllocationProjectName() {
|
||||
return allocationProjectName;
|
||||
}
|
||||
|
||||
public void setAllocationProjectName(String allocationProjectName) {
|
||||
this.allocationProjectName = allocationProjectName;
|
||||
}
|
||||
|
||||
public String getMaterialsList() {
|
||||
return materialsList;
|
||||
}
|
||||
|
||||
public void setMaterialsList(String materialsList) {
|
||||
this.materialsList = materialsList;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
|
||||
public class DepotHeadVo4StatementAccount {
|
||||
|
||||
private String number;
|
||||
|
||||
private String type;
|
||||
|
||||
private Double discountLastMoney;
|
||||
|
||||
private Double changeAmount;
|
||||
|
||||
private Double allPrice;
|
||||
|
||||
private String supplierName;
|
||||
|
||||
private String oTime;
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Double getDiscountLastMoney() {
|
||||
return discountLastMoney;
|
||||
}
|
||||
|
||||
public void setDiscountLastMoney(Double discountLastMoney) {
|
||||
this.discountLastMoney = discountLastMoney;
|
||||
}
|
||||
|
||||
public Double getChangeAmount() {
|
||||
return changeAmount;
|
||||
}
|
||||
|
||||
public void setChangeAmount(Double changeAmount) {
|
||||
this.changeAmount = changeAmount;
|
||||
}
|
||||
|
||||
public Double getAllPrice() {
|
||||
return allPrice;
|
||||
}
|
||||
|
||||
public void setAllPrice(Double allPrice) {
|
||||
this.allPrice = allPrice;
|
||||
}
|
||||
|
||||
public String getSupplierName() {
|
||||
return supplierName;
|
||||
}
|
||||
|
||||
public void setSupplierName(String supplierName) {
|
||||
this.supplierName = supplierName;
|
||||
}
|
||||
|
||||
public String getoTime() {
|
||||
return oTime;
|
||||
}
|
||||
|
||||
public void setoTime(String oTime) {
|
||||
this.oTime = oTime;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user