|
@@ -6,6 +6,8 @@ import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.ToString;
|
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
@Schema(description = "博物馆-标本信息-分页 pageReq VO")
|
|
|
@Data
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@@ -23,6 +25,65 @@ public class MuseumInfoPageReqVO extends PageParam {
|
|
|
|
|
|
@Schema(description = "存放位置")
|
|
|
private String place;
|
|
|
-
|
|
|
+
|
|
|
+ @Schema(description = "中文名称")
|
|
|
+ private String chineseName;
|
|
|
+
|
|
|
+ @Schema(description = "英文名称")
|
|
|
+ private String englishName;
|
|
|
+
|
|
|
+ @Schema(description = "国际名称")
|
|
|
+ private String internationName;
|
|
|
+
|
|
|
+ @Schema(description = "保存类型")
|
|
|
+ private Integer keepType;
|
|
|
+
|
|
|
+ @Schema(description = "成份")
|
|
|
+ private String element;
|
|
|
+
|
|
|
+ @Schema(description = "产地")
|
|
|
+ private String local;
|
|
|
+
|
|
|
+ @Schema(description = "时代")
|
|
|
+ private LocalDateTime bronTime ;
|
|
|
+
|
|
|
+ @Schema(description = "保存地层")
|
|
|
+ private String stratum;
|
|
|
+
|
|
|
+ @Schema(description = "发现时间")
|
|
|
+ private LocalDateTime findTime;
|
|
|
+
|
|
|
+ @Schema(description = "尺寸")
|
|
|
+ private String size;
|
|
|
+
|
|
|
+ @Schema(description = "重量")
|
|
|
+ private Long weight;
|
|
|
+
|
|
|
+ @Schema(description = "来源")
|
|
|
+ private String origin;
|
|
|
+
|
|
|
+ @Schema(description = "描述")
|
|
|
+ private String bewrite;
|
|
|
+
|
|
|
+ @Schema(description = "馆藏状态")
|
|
|
+ private Integer store;
|
|
|
+
|
|
|
+ @Schema(description = "入库时间")
|
|
|
+ private LocalDateTime storeTime;
|
|
|
+
|
|
|
+ @Schema(description = "用途")
|
|
|
+ private String way;
|
|
|
+
|
|
|
+ @Schema(description = "资产号")
|
|
|
+ private String fundId;
|
|
|
+
|
|
|
+ @Schema(description = "删除原因")
|
|
|
+ private String reason;
|
|
|
+
|
|
|
+ @Schema(description = "标本图片")
|
|
|
+ private String picture;
|
|
|
+
|
|
|
+ @Schema(description = "备注")
|
|
|
+ private String sampleTip;
|
|
|
}
|
|
|
|