|
@@ -42,7 +42,7 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
private ProductBelongService productBelongService;
|
|
|
|
|
|
@ApiOperation("保存")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:save")
|
|
|
+ @PreAuthorize(hasPermi = "productManage:productInfo:add")
|
|
|
@PostMapping("/save")
|
|
|
public ResponseBase save(@RequestBody @Valid ProductInfoForm productInfoForm) {
|
|
|
int success = this.productInfoService.save(productInfoForm);
|
|
@@ -51,7 +51,7 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("删除产品")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:delete")
|
|
|
+ @PreAuthorize(hasPermi = "productManage:productInfo:del")
|
|
|
@PostMapping("/delete")
|
|
|
public ResponseBase delete(@RequestBody ProductInfoForm productInfoForm) {
|
|
|
int success = this.productInfoService.remove(productInfoForm);
|
|
@@ -59,7 +59,7 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("修改产品")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:update")
|
|
|
+ @PreAuthorize(hasPermi = "productManage:productInfo:edit")
|
|
|
@PostMapping("/update")
|
|
|
public ResponseBase update(@RequestBody @Valid ProductInfoForm productInfoForm) {
|
|
|
int success = this.productInfoService.modify(productInfoForm);
|
|
@@ -67,7 +67,6 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("分页获取产品")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:searchByPage")
|
|
|
@PostMapping("/searchByPage")
|
|
|
public ResponseBase searchByPage(@RequestBody ProductInfoForm productInfoForm) {
|
|
|
PageInfo pageInfo = this.productInfoService.queryListByPage(productInfoForm);
|
|
@@ -75,7 +74,6 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取产品属性扩展")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:expansions")
|
|
|
@PostMapping("/expansions")
|
|
|
public ResponseBase expansions(@RequestParam("guid") String guid) {
|
|
|
List<ProductExpansion> expansions = this.productExpansionService.searchByProductGuid(guid);
|
|
@@ -83,7 +81,6 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取产品属性")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:belongs")
|
|
|
@PostMapping("/belongs")
|
|
|
public ResponseBase belongs(@RequestParam("guid") String guid) {
|
|
|
List<ProductBelong> belongs = productBelongService.searchByProductGuid(guid);
|
|
@@ -91,7 +88,7 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("发布产品")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:publish")
|
|
|
+ @PreAuthorize(hasPermi = "productManage:productInfo:create")
|
|
|
@PostMapping("/publish")
|
|
|
public ResponseBase publish(@RequestBody JSONObject jsonObject) {
|
|
|
log.info("参数: {}", jsonObject);
|
|
@@ -118,7 +115,6 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("发布商品")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:publishGoods")
|
|
|
@PostMapping("/publishGoods")
|
|
|
public ResponseBase publishGoods(@RequestBody JSONObject jsonObject) {
|
|
|
log.info("参数: {}", jsonObject.toJSONString());
|
|
@@ -152,7 +148,6 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取商品详细信息")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:findByGoodsInfoGuid")
|
|
|
@PostMapping("/findByGoodsInfoGuid")
|
|
|
public ResponseBase findByGoodsInfoGuid(@RequestParam("goodsInfoGuid") String goodsInfoGuid) {
|
|
|
List<ProductInfo> productInfos = this.productInfoService.searchByGoodsInfoGuid(goodsInfoGuid);
|
|
@@ -160,7 +155,6 @@ public class ProductInfoController extends CarbonBaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取产品详细信息")
|
|
|
- @PreAuthorize(hasPermi = "system:productInfo:findByProductInfoGuid")
|
|
|
@GetMapping("/findByProductInfoGuid")
|
|
|
public ResponseBase findByProductInfoGuid(@RequestParam("productGuid") String productGuid) {
|
|
|
ProductInfo productInfos = this.productInfoService.findById(productGuid);
|