Administrator
2025-07-25 fc03a0df2edbf308351d3fb4027919e1d1d30e51
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
30
31
32
33
34
35
36
37
38
39
40
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 = "ApiClothesPatternVo", description = "参数")
public class ApiClothesPatternVo {
 
 
    @ApiModelProperty(value = "ID")
    private Long id;
 
    @ApiModelProperty(value = "编码")
    private String code;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "小图标")
    private String image;
 
    @ApiModelProperty(value = "简介")
    private String content;
 
    @ApiModelProperty(value = "价格")
    private BigDecimal price;
 
    @ApiModelProperty(value = "类型 1-仅文字 2-仅图案 3-文字加图案")
    private Integer type;
 
    private String boxWidth;
    private String boxHeight;
    private Integer leftPercent;
    private Integer topPercent;
 
}