32 lines
689 B
Java
32 lines
689 B
Java
|
|
package com.ai.da.seller;
|
||
|
|
|
||
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||
|
|
import lombok.Data;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 设计URLs DTO
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@Schema(description = "设计URLs数据传输对象")
|
||
|
|
public class DesignUrlsDTO {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 设计项ID
|
||
|
|
*/
|
||
|
|
@Schema(description = "设计项ID", example = "1")
|
||
|
|
private Long designItemId;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* TO_PRODUCT_IMAGE类型的URL列表
|
||
|
|
*/
|
||
|
|
@Schema(description = "TO_PRODUCT_IMAGE类型的URL列表")
|
||
|
|
private List<String> toProductImageUrls;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* DesignItemDetail的path列表
|
||
|
|
*/
|
||
|
|
@Schema(description = "DesignItemDetail的path列表")
|
||
|
|
private List<String> clothes;
|
||
|
|
}
|