大屏接口

dev_0531
yechenhao 5 years ago
parent 9af471035a
commit b131571504

@ -13,4 +13,19 @@ public class CustomerDistinctDTO {
private String customerName;
private String customerUserId;
private Long count;
@Override
public String toString() {
return "CustomerDistinctDTO{" +
"companyCode='" + companyCode + '\'' +
", companyName='" + companyName + '\'' +
", storeId=" + storeId +
", customerId=" + customerId +
", storeName='" + storeName + '\'' +
", storeCode='" + storeCode + '\'' +
", customerName='" + customerName + '\'' +
", customerUserId='" + customerUserId + '\'' +
", count=" + count +
'}';
}
}

@ -677,7 +677,7 @@ public class StorePromotionDataService {
//创造行
Row row = hssfSheet.createRow(isAdd++);
CustomerDistinctDTO customerDistinctDTO = customerDistinctDTOS.get(i);
System.out.println(customerDistinctDTO.toString());
Cell cpUserIdCell = row.createCell(0);
cpUserIdCell.setCellValue(customerDistinctDTO.getCompanyCode());
Cell storeCodeCell = row.createCell(1);

Loading…
Cancel
Save