|
@@ -330,7 +330,7 @@ public class ProductOrderFacade extends ProductOrderServiceImpl {
|
|
|
GsonUtil.toJson(datas.data.getRecords());
|
|
|
List<String> listName = new ArrayList<>();
|
|
|
|
|
|
- listName.add("订单id");
|
|
|
+ listName.add("编号");
|
|
|
listName.add("申请时间");
|
|
|
listName.add("订单号");
|
|
|
listName.add("申请机构");
|
|
@@ -353,7 +353,7 @@ public class ProductOrderFacade extends ProductOrderServiceImpl {
|
|
|
List<ProductOrderExportDTO> list = new ArrayList<>();
|
|
|
for (int i = 0; i < datas.data.getRecords().size(); i++) {
|
|
|
ProductOrderWrapper userInfo = datas.data.getRecords().get(i);
|
|
|
- list.add(new ProductOrderExportDTO(String.valueOf(userInfo.getId()),
|
|
|
+ list.add(new ProductOrderExportDTO(String.valueOf(i+1),
|
|
|
DateUtil.formatDate(userInfo.getTime()),
|
|
|
userInfo.getNum(),
|
|
|
userInfo.getOrgName(),
|