|
@@ -34,7 +34,7 @@ public class CurrencyRecordController {
|
|
* @param type 类型:0-平台;1-用户;2-商户
|
|
* @param type 类型:0-平台;1-用户;2-商户
|
|
*/
|
|
*/
|
|
@GetMapping("/listCurrencyRecord")
|
|
@GetMapping("/listCurrencyRecord")
|
|
- public List<CurrencyRecordDTO> listCurrencyRecord(@NotNull(message = "查询类型不能为空") Integer type, LocalDate date) {
|
|
|
|
|
|
+ public List<CurrencyRecordDTO> listCurrencyRecord(@NotNull(message = "查询类型不能为空") Integer type, @NotNull(message = "日期不能为空")Long date) {
|
|
return this.currencyRecordClient.listCurrencyRecord(type,date);
|
|
return this.currencyRecordClient.listCurrencyRecord(type,date);
|
|
}
|
|
}
|
|
|
|
|