This commit is contained in:
ls
2025-11-29 13:04:09 +08:00
parent 4f216a9482
commit e621a36bad
2455 changed files with 30928 additions and 15039 deletions

View File

@@ -146,4 +146,11 @@ public class HistoricalDatabase implements Serializable {
@Excel(name = "附件", width = 15)
@Schema(description = "附件")
private String fileUrl;
/**
* 描述
*/
@Excel(name = "描述", width = 15)
@Schema(description = "描述")
private String description;
}

View File

@@ -142,7 +142,12 @@ public class LocalDatabase implements Serializable {
@Schema(description = "样品型号")
private String sampleModel;
/**
* 描述
*/
@Excel(name = "描述", width = 15)
@Schema(description = "描述")
private String description;
@TableField(exist = false)
private List<ExperimentReviewDTO> ExperimentReviewList;