All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.web.model.dao.mongodb.iosummary.SceneInfoCollection Maven / Gradle / Ivy

package com.arextest.web.model.dao.mongodb.iosummary;

import com.arextest.web.model.dto.iosummary.SubSceneInfo;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.data.mongodb.core.mapping.Document;

import java.util.List;

/**
 * Created by rchen9 on 2023/2/28.
 */
@Data
@NoArgsConstructor
@Document(collection = "SceneInfo")
public class SceneInfoCollection {
    private int code;
    private int count;
    private String planId;
    private String planItemId;
    private List subScenes;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy