|
|
|
@ -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 +
|
|
|
|
|
'}';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|