南昌市物联网技防平台-学校版后台
zengh
2021-06-03 723946c6b272e5aa4c7ec110ff1395f6c2b23e89
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.springblade.jfpt.animalheat.vo;
 
import lombok.Data;
 
/**
 * 体温数据统计返回属性参数
 */
@Data
public class StatisVo {
    /**
     * 体温状态  1为高于37度高温状态   0为正常
     */
    private Integer status;
 
    /**
     * 数量
     */
    private Integer number;
}