Administrator
2025-07-25 1c99b4dea4420d3d920c30599718966f570e38c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package cc.mrbird.febs.mall.vo.clothes;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "ApiClothesPatternRemarkVo", description = "参数")
public class ApiClothesPatternRemarkVo {
 
 
    @ApiModelProperty(value = "正面图案ID")
    private Long patternId;
    @ApiModelProperty(value = "正面图案名称")
    private String patternName;
    @ApiModelProperty(value = "正面图案")
    private String patternImage;
    @ApiModelProperty(value = "正面图案价格")
    private BigDecimal patternPrice = BigDecimal.ZERO;
    @ApiModelProperty(value = "正面自定义内容")
    private String patternRemark;
 
    private Integer boxWidth;
    private Integer boxHeight;
    private Integer leftPercent;
    private Integer topPercent;
}