rentaiming
2024-08-01 d3d025cc716b33553965b0701ed51320823361af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.system.api.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class getHomeGoodsSkuXxiVO {
 
    @ApiModelProperty(value = "标题名称")
    private String titleName;
 
    @ApiModelProperty(value = "内容")
    private String content;
 
    @ApiModelProperty(value = "排序")
    private Integer num;
}