优化商品导出功能

This commit is contained in:
季圣华
2023-04-18 23:43:10 +08:00
parent b756b317cd
commit a5f821ab29
9 changed files with 160 additions and 348 deletions

View File

@@ -6,6 +6,8 @@ public class MaterialVo4Unit extends Material{
private String unitName;
private BigDecimal ratio;
private String categoryName;
private String materialOther;
@@ -53,6 +55,14 @@ public class MaterialVo4Unit extends Material{
this.unitName = unitName;
}
public BigDecimal getRatio() {
return ratio;
}
public void setRatio(BigDecimal ratio) {
this.ratio = ratio;
}
public String getCategoryName() {
return categoryName;
}

View File

@@ -77,6 +77,9 @@ public interface MaterialMapperEx {
@Param("enableBatchNumber") String enableBatchNumber,
@Param("remark") String remark,
@Param("idList") List<Long> idList);
List<MaterialExtend> getOtherMaterialList();
/**
* 通过商品名称查询商品信息
* */
@@ -149,4 +152,5 @@ public interface MaterialMapperEx {
@Param("otherField3") String otherField3,
@Param("unit") String unit,
@Param("unitId") Long unitId);
}