TASK:模块化;
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package com.ai.da.model.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ReceiveCollectionElement {
|
||||
private String url;
|
||||
private String level1Type;
|
||||
private String level2Type;
|
||||
private String rgb;
|
||||
}
|
||||
13
src/main/java/com/ai/da/model/dto/ReceiveDesignParam.java
Normal file
13
src/main/java/com/ai/da/model/dto/ReceiveDesignParam.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package com.ai.da.model.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class ReceiveDesignParam {
|
||||
|
||||
private List<ReceiveCollectionElement> receiveCollectionElementList;
|
||||
|
||||
private Long projectId;
|
||||
}
|
||||
Reference in New Issue
Block a user