rentaiming
2024-07-31 5c1f76edf6bd37c68ca3e915970c3bdac1e6d0e5
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;
}