2025-09-23 16:45:42 +08:00
|
|
|
package com.yj.earth.business.domain;
|
2025-09-16 11:41:45 +08:00
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
2025-09-23 16:45:42 +08:00
|
|
|
|
2025-09-16 11:41:45 +08:00
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
2025-09-23 16:45:42 +08:00
|
|
|
public class Military {
|
2025-09-16 11:41:45 +08:00
|
|
|
@Schema(description = "主键")
|
|
|
|
|
private String id;
|
|
|
|
|
@Schema(description = "模型类型ID")
|
|
|
|
|
private String modelTypeId;
|
|
|
|
|
@Schema(description = "模型名称")
|
|
|
|
|
private String modelName;
|
|
|
|
|
@Schema(description = "模型类型")
|
|
|
|
|
private String modelType;
|
|
|
|
|
@Schema(description = "模型数据")
|
2025-09-23 16:45:42 +08:00
|
|
|
private String data;
|
2025-09-16 11:41:45 +08:00
|
|
|
@Schema(description = "模型视图")
|
|
|
|
|
private String view;
|
|
|
|
|
@Schema(description = "创建时间")
|
|
|
|
|
private LocalDateTime createdAt;
|
|
|
|
|
@Schema(description = "更新时间")
|
|
|
|
|
private LocalDateTime updatedAt;
|
|
|
|
|
}
|