| | |
| | | |
| | | import com.ycl.platform.domain.result.BaseResult; |
| | | import lombok.Data; |
| | | import org.springframework.data.mongodb.core.index.TextIndexed; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | |
| | | import java.util.List; |
| | |
| | | * @author gonghl |
| | | */ |
| | | @Data |
| | | @Document(collection = "monitor_resource") |
| | | @Document(collection = "hk_monitor_resource") |
| | | public class MonitorResourceResult extends BaseResult { |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 名称 |
| | | */ |
| | | @TextIndexed |
| | | private String monitorName; |
| | | |
| | | /** |
| | | * 编号 |
| | | */ |
| | | @TextIndexed |
| | | private String monitorCode; |
| | | |
| | | /** |