属性组

master
hbr 2024-03-02 13:50:51 +08:00
parent 59a277ea11
commit 143623924d
2 changed files with 16 additions and 0 deletions

View File

@ -23,6 +23,10 @@ public class RuleInfoEditReq extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 规格名称 */
@ApiModelProperty(name = "主键", value = "主键")
private Integer id;
/** 规格名称 */
@ApiModelProperty(name = "规格名称", value = "规格名称")
private String name;

View File

@ -54,6 +54,18 @@ public class AttributeGroupController extends BaseController {
return Result.success(tableDataInfo);
}
<<<<<<< HEAD
=======
@ApiOperation("获取属性组列表")
@RequiresPermissions("product:attributeGroup:list")
@GetMapping("listAll")
public Result<TableDataInfo<AttributeGroupPageResp>> listAttributeGroupPageResp(AttributeGroupQueryReq attributeGroupQueryReq){
startPage();;
TableDataInfo<AttributeGroupPageResp> page = attributeGroupService.page(AttributeGroup.queryBuild(attributeGroupQueryReq));
return Result.success(page);
}
>>>>>>> 3028276 ()
/**
*
*/