package cn.iocoder.yudao.module.product.controller.admin.property;
|
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
|
import cn.iocoder.yudao.module.product.controller.admin.property.vo.value.ProductPropertyValuePageReqVO;
|
import cn.iocoder.yudao.module.product.controller.admin.property.vo.value.ProductPropertyValueRespVO;
|
import cn.iocoder.yudao.module.product.controller.admin.property.vo.value.ProductPropertyValueSaveReqVO;
|
import cn.iocoder.yudao.module.product.dal.dataobject.property.ProductPropertyValueDO;
|
import cn.iocoder.yudao.module.product.service.property.ProductPropertyValueService;
|
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Parameter;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
import jakarta.annotation.Resource;
|
import jakarta.validation.Valid;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.validation.annotation.Validated;
|
import org.springframework.web.bind.annotation.*;
|
|
import java.util.List;
|
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.convertList;
|
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.singleton;
|
|
@Tag(name = "管理后台 - 商品属性值")
|
@RestController
|
@RequestMapping("/product/property/value")
|
@Validated
|
public class ProductPropertyValueController {
|
|
@Resource
|
private ProductPropertyValueService productPropertyValueService;
|
|
@PostMapping("/create")
|
@Operation(summary = "创建属性值")
|
@PreAuthorize("@ss.hasPermission('product:property:create')")
|
public CommonResult<Long> createPropertyValue(@Valid @RequestBody ProductPropertyValueSaveReqVO createReqVO) {
|
return success(productPropertyValueService.createPropertyValue(createReqVO));
|
}
|
|
@PutMapping("/update")
|
@Operation(summary = "更新属性值")
|
@PreAuthorize("@ss.hasPermission('product:property:update')")
|
public CommonResult<Boolean> updatePropertyValue(@Valid @RequestBody ProductPropertyValueSaveReqVO updateReqVO) {
|
productPropertyValueService.updatePropertyValue(updateReqVO);
|
return success(true);
|
}
|
|
@DeleteMapping("/delete")
|
@Operation(summary = "删除属性值")
|
@Parameter(name = "id", description = "编号", required = true, example = "1024")
|
@PreAuthorize("@ss.hasPermission('product:property:delete')")
|
public CommonResult<Boolean> deletePropertyValue(@RequestParam("id") Long id) {
|
productPropertyValueService.deletePropertyValue(id);
|
return success(true);
|
}
|
|
@GetMapping("/get")
|
@Operation(summary = "获得属性值")
|
@Parameter(name = "id", description = "编号", required = true, example = "1024")
|
@PreAuthorize("@ss.hasPermission('product:property:query')")
|
public CommonResult<ProductPropertyValueRespVO> getPropertyValue(@RequestParam("id") Long id) {
|
ProductPropertyValueDO value = productPropertyValueService.getPropertyValue(id);
|
return success(BeanUtils.toBean(value, ProductPropertyValueRespVO.class));
|
}
|
|
@GetMapping("/page")
|
@Operation(summary = "获得属性值分页")
|
@PreAuthorize("@ss.hasPermission('product:property:query')")
|
public CommonResult<PageResult<ProductPropertyValueRespVO>> getPropertyValuePage(@Valid ProductPropertyValuePageReqVO pageVO) {
|
PageResult<ProductPropertyValueDO> pageResult = productPropertyValueService.getPropertyValuePage(pageVO);
|
return success(BeanUtils.toBean(pageResult, ProductPropertyValueRespVO.class));
|
}
|
|
@GetMapping("/simple-list")
|
@Operation(summary = "获得属性值精简列表")
|
@Parameter(name = "propertyId", description = "属性项编号", required = true, example = "1024")
|
public CommonResult<List<ProductPropertyValueRespVO>> getPropertyValueSimpleList(@RequestParam("propertyId") Long propertyId) {
|
List<ProductPropertyValueDO> list = productPropertyValueService.getPropertyValueListByPropertyId(singleton(propertyId));
|
return success(convertList(list, value -> new ProductPropertyValueRespVO() // 只返回 id、name 属性
|
.setId(value.getId()).setName(value.getName())));
|
}
|
|
}
|