|
|
|
|
@ -51,11 +51,11 @@ public class SamplingVo {
|
|
|
|
|
//时间范围
|
|
|
|
|
//开始时间
|
|
|
|
|
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
private LocalDateTime startTime; |
|
|
|
|
//结束时间
|
|
|
|
|
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
private LocalDateTime endTime; |
|
|
|
|
//被抽检次数
|
|
|
|
|
private int samplingNumber; |
|
|
|
|
@ -104,7 +104,7 @@ public class SamplingVo {
|
|
|
|
|
samplingInspection +="最大年龄:"+vo.getAgeMax()+";"; |
|
|
|
|
} |
|
|
|
|
if(vo.getAgeMin() >= 0){ |
|
|
|
|
samplingInspection +="最小年龄:"+vo.getSamplingName()+";"; |
|
|
|
|
samplingInspection +="最小年龄:"+vo.getAgeMin()+";"; |
|
|
|
|
} |
|
|
|
|
if(StrUtil.isNotBlank(vo.getGender())){ |
|
|
|
|
samplingInspection +="性别:"+ ("1".equals(vo.getGender())?"男":"女")+";"; |
|
|
|
|
|