KKSU
2024-05-15 d35d562b6e743f4eff9480f7a1ecbee890deb438
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cc.mrbird.febs.mall.vo;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminMailGoodsImagesVo", description = "信息返回类")
public class AdminMailGoodsImagesVo {
 
    private String imageUrl;
 
    private Integer seq;
 
    private Long goodsId;
}