Administrator
2025-07-25 1c99b4dea4420d3d920c30599718966f570e38c8
feat(mall): 添加衣服图案和位置的额外属性

- 在 ApiClothesLocationInfoVo、ApiClothesLocationRemarkVo、ApiClothesPatternInfoVo 和 ApiClothesPatternRemarkVo 中添加 boxWidth、boxHeight、leftPercent 和 topPercent属性
- 在 ClothesPattern 实体中将 boxWidth 和 boxHeight 的类型从 String 改为 Integer- 更新相关服务和控制器以支持这些新属性
1 files modified
4 ■■■■ changed files
src/main/java/cc/mrbird/febs/mall/vo/clothes/ApiClothesPatternInfoVo.java 4 ●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/mall/vo/clothes/ApiClothesPatternInfoVo.java
@@ -22,8 +22,8 @@
    @ApiModelProperty(value = "正面自定义内容")
    private String patternRemark;
    private String boxWidth;
    private String boxHeight;
    private Integer boxWidth;
    private Integer boxHeight;
    private Integer leftPercent;
    private Integer topPercent;
}