package com.dy.pipIrrSell.clientCard; import com.dy.common.aop.SsoAop; import com.dy.common.webUtil.BaseResponse; import com.dy.common.webUtil.BaseResponseUtils; import com.dy.common.webUtil.QueryResultVo; import com.dy.common.webUtil.ResultCodeMsg; import com.dy.pipIrrGlobal.pojoBa.BaClient; import com.dy.pipIrrGlobal.voSe.VoCardInfo; import com.dy.pipIrrGlobal.voSe.VoCards; import com.dy.pipIrrSell.clientCard.qo.QoCards; import com.dy.pipIrrSell.result.SellResultCode; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.media.Content; import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.responses.ApiResponse; import io.swagger.v3.oas.annotations.responses.ApiResponses; import io.swagger.v3.oas.annotations.tags.Tag; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; import java.util.List; import java.util.Map; /** * @author ZhuBaoMin * @date 2023-12-27 19:36 * @LastEditTime 2023-12-27 19:36 * @Description */ @Slf4j @Tag(name = "农户水卡", description = "农户水卡") @RestController @RequestMapping(path="clientcard") @RequiredArgsConstructor public class ClientCardCtrl { private final ClientCardSv clientCardSv; /** * 获取指定用户名下全部水卡 * @param clientId * @return */ @Operation(summary = "获得全部水卡", description = "返回全部水卡数据") @ApiResponses(value = { @ApiResponse( responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, description = "返回一页农户数据(BaseResponse.content:QueryResultVo[{}])", content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, schema = @Schema(implementation = BaClient.class))} ) }) @GetMapping(path = "clientcard/{clientId}") @SsoAop() public BaseResponse>> get(@PathVariable("clientId") Long clientId){ try { List list = clientCardSv.getCardInfoByClientId(clientId); return BaseResponseUtils.buildSuccess(list); } catch (Exception e) { log.error("查询农户异常", e); return BaseResponseUtils.buildException(e.getMessage()) ; } } /** * 根据水卡编号获取操作记录及余额 * @param cardNum 水卡编号 * @return 水卡操作记录及余额 */ @Operation(summary = "获得水卡操作记录及余额", description = "返回水卡操作记录及余额") @ApiResponses(value = { @ApiResponse( responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, description = "返回一页农户数据(BaseResponse.content:QueryResultVo[{}])", content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, schema = @Schema(implementation = BaClient.class))} ) }) @GetMapping(path = "/getoperaterecords") @SsoAop() public BaseResponse>> getOperateRecordsAndMoney(@RequestParam("cardNum") Long cardNum){ try { Map map = clientCardSv.getOperateRecordsAndMoney(cardNum); return BaseResponseUtils.buildSuccess(map); } catch (Exception e) { log.error("查询操作记录异常", e); return BaseResponseUtils.buildException(e.getMessage()) ; } } /** * 根据水卡编号获取卡片状态 * @param cardNum * @return */ @Operation(summary = "根据水卡编号获取卡片状态", description = "根据水卡编号获取卡片状态") @ApiResponses(value = { @ApiResponse( responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, description = "返回一页农户数据(BaseResponse.content:QueryResultVo[{}])", content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, schema = @Schema(implementation = BaClient.class))} ) }) @GetMapping(path = "/cardstate") @SsoAop() public BaseResponse getCardStateByCardNum(@RequestParam("cardNum") Long cardNum){ try { String stateName = clientCardSv.getCardStateByCardNum(cardNum); return BaseResponseUtils.buildSuccess(stateName); } catch (Exception e) { log.error("查询操作记录异常", e); return BaseResponseUtils.buildException(e.getMessage()) ; } } /** * 根据指定条件获取水卡列表,应用程序使用 * @param vo * @return */ @Operation(summary = "获得一页水卡记录", description = "返回一页水卡数据") @ApiResponses(value = { @ApiResponse( responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, description = "返回一页农户数据(BaseResponse.content:QueryResultVo[{}])", content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, schema = @Schema(implementation = BaClient.class))} ) }) @GetMapping(path = "getcards") @SsoAop() public BaseResponse>> getcards(QoCards vo){ try { QueryResultVo> res = clientCardSv.getCards(vo); if(res.itemTotal != null && res.itemTotal > 0) { return BaseResponseUtils.buildSuccess(res); }else { return BaseResponseUtils.buildFail(SellResultCode.THE_CARD_NOT_EXIST.getMessage()); } } catch (Exception e) { log.error("查询农户异常", e); return BaseResponseUtils.buildException(e.getMessage()) ; } } }