| | |
| | | |
| | | @Override |
| | | public BillingDetailsVo queryUserBillingDetails(String yearMonth, Integer recordId) { |
| | | System.out.println("账单传参:yearMonth"+yearMonth+"|"+"recordId"+recordId); |
| | | // TODO: 2023/7/4 账单列表 |
| | | return null; |
| | | BillingDetailsVo vo = new BillingDetailsVo(); |
| | | if (null != yearMonth){ |
| | | Date monthStart = DateTimeHelper.getCurrentIdetMouthStart(yearMonth); |
| | | Date monthEnd = DateTimeHelper.getCurrentIdeaMouthEnd(yearMonth); |
| | | |
| | | |
| | | }else { |
| | | Date currentMouthStart = DateTimeHelper.getCurrentMouthStart(); |
| | | Date currentMouthEnd = DateTimeHelper.getCurrentMouthEnd(); |
| | | |
| | | |
| | | } |
| | | return vo; |
| | | } |
| | | |
| | | @Override |