package com.whyc.dto.paramter;
|
|
|
|
public class AnalysisDto {
|
|
private int battGroupId;
|
private int testRecordCount;
|
|
public int getBattGroupId() {
|
return battGroupId;
|
}
|
|
public void setBattGroupId(int battGroupId) {
|
this.battGroupId = battGroupId;
|
}
|
|
public int getTestRecordCount() {
|
return testRecordCount;
|
}
|
|
public void setTestRecordCount(int testRecordCount) {
|
this.testRecordCount = testRecordCount;
|
}
|
|
|
}
|