优化客户对账和供应商对账的导出excel功能
This commit is contained in:
@@ -54,6 +54,9 @@ public interface DepotItemMapperEx {
|
||||
List<DepotItemVo4WithInfoEx> getDetailList(
|
||||
@Param("headerId") Long headerId);
|
||||
|
||||
List<DepotItemVo4WithInfoEx> getBillDetailListByIds(
|
||||
@Param("idList") List<Long> idList);
|
||||
|
||||
List<DepotItemVo4WithInfoEx> findByAll(
|
||||
@Param("materialParam") String materialParam,
|
||||
@Param("categoryIdList") List<Long> categoryIdList,
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
public class BillListCacheVo {
|
||||
|
||||
private String number;
|
||||
|
||||
private String organName;
|
||||
|
||||
private String operTimeStr;
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getOrganName() {
|
||||
return organName;
|
||||
}
|
||||
|
||||
public void setOrganName(String organName) {
|
||||
this.organName = organName;
|
||||
}
|
||||
|
||||
public String getOperTimeStr() {
|
||||
return operTimeStr;
|
||||
}
|
||||
|
||||
public void setOperTimeStr(String operTimeStr) {
|
||||
this.operTimeStr = operTimeStr;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user