| | |
| | | import javax.validation.Valid; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.IOException; |
| | | import java.util.Base64; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | } |
| | | |
| | | //文件加密 |
| | | BASE64Encoder base64Encoder =new BASE64Encoder(); |
| | | // BASE64Encoder base64Encoder =new BASE64Encoder(); |
| | | // String base64EncoderImg = null; |
| | | // try { |
| | | // base64EncoderImg = base64Encoder.encode(file.getBytes()); |
| | | // } catch (IOException e) { |
| | | // e.printStackTrace(); |
| | | // } |
| | | |
| | | //文件加密 |
| | | String base64EncoderImg = null; |
| | | try { |
| | | base64EncoderImg = base64Encoder.encode(file.getBytes()); |
| | | base64EncoderImg = Base64.getEncoder().encodeToString(file.getBytes()); |
| | | } catch (IOException e) { |
| | | e.printStackTrace(); |
| | | } |
| | |
| | | String imageNames = System.currentTimeMillis() + IdUtil.simpleUUID() + imageFuffix; |
| | | String imageName = "uploadeFile/" + imageNames; |
| | | OssUtils.uploadFileWithBase64(base64EncoderImg, imageName); |
| | | String bucket_name ="https://excoin.oss-cn-hangzhou.aliyuncs.com"; |
| | | String bucket_name ="https://meiao-1517.oss-cn-shenzhen.aliyuncs.com"; |
| | | String url = bucket_name + "/" + imageName; |
| | | |
| | | Map<String,Object> map = new HashMap<String,Object>(); |
| | |
| | | } |
| | | |
| | | /** |
| | | * 商品-热卖 |
| | | */ |
| | | @GetMapping("goodsHot/{id}") |
| | | @ControllerEndpoint(operation = " 商品-热卖", exceptionMessage = "设置失败") |
| | | public FebsResponse goodsHot(@NotNull(message = "{required}") @PathVariable Long id) { |
| | | return adminMallGoodsService.goodsHot(id); |
| | | } |
| | | |
| | | /** |
| | | * 商品-取消热卖 |
| | | */ |
| | | @GetMapping("goodsNotHot/{id}") |
| | | @ControllerEndpoint(operation = " 商品-取消热卖", exceptionMessage = "设置失败") |
| | | public FebsResponse goodsNotHot(@NotNull(message = "{required}") @PathVariable Long id) { |
| | | return adminMallGoodsService.goodsNotHot(id); |
| | | } |
| | | |
| | | /** |
| | | * 商品-上架 |
| | | */ |
| | | @GetMapping("upMallGoods/{id}") |