-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2471a18
commit b7a1ba2
Showing
5 changed files
with
100 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/main/java/com/dduckddak/domain/data/sales/dto/SalesRateByAgeAndIndustryResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.dduckddak.domain.data.sales.dto; | ||
|
||
public interface SalesRateByAgeAndIndustryResponse { | ||
String getTownName(); | ||
String getIndustryName(); | ||
Double getAge10sSales(); | ||
Double getAge20sSales(); | ||
Double getAge30sSales(); | ||
Double getAge40sSales(); | ||
Double getAge50sSales(); | ||
Double getAge60sAndMoreSales(); | ||
Double getWomenPercentage(); | ||
Long getTotalSales(); | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/dduckddak/domain/data/sales/dto/SalesRateByGenderAndIndustryResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.dduckddak.domain.data.sales.dto; | ||
|
||
public interface SalesRateByGenderAndIndustryResponse { | ||
String getTownName(); | ||
String getIndustryName(); | ||
Double getMenPercentage(); | ||
Double getWomenPercentage(); | ||
Long getSalesOfIndustry(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters