package com.doumee.biz.zbom.model.zhongtai;
|
|
import lombok.Data;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2024/7/19 11:33
|
*/
|
@Data
|
public class APISpaceCaseVo {
|
|
private String caseInfo;
|
/**
|
* 空间主图
|
*/
|
private String coverImage;
|
private String id;
|
/**
|
* 空间图片
|
*/
|
private String[] imgList;
|
private String intro;
|
private String publishDate;
|
private String publishDt;
|
/**
|
* 空间描述
|
*/
|
private String spaceDesc;
|
/**
|
* 空间名称
|
*/
|
private String spaceName;
|
private String title;
|
|
|
}
|