This commit is contained in:
苏竹红
2024-04-28 19:34:56 +08:00
parent ef1ef9a9f6
commit dbee058061
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
package com.cool.store.dto.decoration;
import lombok.Data;
import java.util.List;
/**
* @Author suzhuhong
* @Date 2024/4/28 19:19
* @Version 1.0
*/
@Data
public class RowsDTO{
private List<DecorationDTO> rows;
}