| | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.text.SimpleDateFormat; |
| | | |
| | | /** |
| | |
| | | @Autowired |
| | | private TokenUtil tokenUtil; |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private SysLogClient slClient; |
| | | |
| | | private final SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd"); |
| | |
| | | @ApiImplicitParam(value = "年月", name = "yearMonth", required = true, dataType = "string"), |
| | | @ApiImplicitParam(value = "记录id", name = "recordId", required = true, dataType = "int"), |
| | | }) |
| | | public ResultUtil<BillingDetailsVo> getUserBillingDetails( String yearMonth, Integer recordId){ |
| | | public ResultUtil<BillingDetailsVo> getUserBillingDetails(String yearMonth,Integer recordId){ |
| | | try { |
| | | Integer appUserId = tokenUtil.getUserIdFormRedis(); |
| | | if(null == appUserId){ |