初始化项目

cloud-server
刘河平 2024-11-12 20:51:09 +08:00
parent ee308bfd89
commit ef7501c8bc
2 changed files with 1 additions and 18 deletions

View File

@ -55,8 +55,5 @@ public enum BusinessType {
*
*/
CLEAN,
/**
*
*/
SELECT
}

View File

@ -41,7 +41,6 @@ public class AttributeGroupController extends BaseController {
@Autowired
private AttributeGroupService attributeGroupService;
/**
*
*/
@ -92,19 +91,6 @@ public class AttributeGroupController extends BaseController {
);
}
/**
*
*/
@RequiresPermissions("product:attributeGroup:getById")
@Log(title = "属性组", businessType = BusinessType.SELECT)
@PostMapping
@ApiOperation("回显属性组")
@GetMapping("/{id}")
public Result<AttributeGroup> getById(@PathVariable("id") Long id) {
AttributeGroup attributeGroup = attributeGroupService.getById(id);
return Result.success(attributeGroup);
}
/**
*
*/