试验新增理化所统计、西核院统计两个字段

This commit is contained in:
dengchun
2025-05-01 13:07:10 +08:00
parent a9eb923350
commit 16cec65ee2
2 changed files with 35 additions and 0 deletions

View File

@@ -220,4 +220,18 @@ public class Experiment implements Serializable {
//@TableField(exist = false)
//private List<ExperimentTestProcess> experimentTestProcessList;
/**
* 西核院统计
*/
@Excel(name = "西核院统计", width = 15)
@Schema(description = "西核院统计")
private Integer totalCountXhy;
/**
* 理化所统计
*/
@Excel(name = "理化所统计", width = 15)
@Schema(description = "理化所统计")
private Integer totalCountLhs;
}