6 changed files with 91 additions and 19 deletions
@ -0,0 +1,54 @@ |
|||||
|
package yq.system.domain.vo; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
import yq.common.annotation.Excel; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @auther yq |
||||
|
* @data 2025/1/8 |
||||
|
*/ |
||||
|
public class MineWarningVo { |
||||
|
|
||||
|
private Long id; |
||||
|
|
||||
|
|
||||
|
private Long faceId; |
||||
|
|
||||
|
@Excel(name = "姓名") |
||||
|
private String faceName; |
||||
|
|
||||
|
@Excel(name = "年龄") |
||||
|
private Long age; |
||||
|
|
||||
|
/** 手机号 */ |
||||
|
@Excel(name = "手机号") |
||||
|
private String facePhone; |
||||
|
|
||||
|
|
||||
|
@Excel(name = "组名") |
||||
|
private String mineGroupName; |
||||
|
|
||||
|
@Excel(name = "高压") |
||||
|
private Integer bpHigh; |
||||
|
@Excel(name = "低压") |
||||
|
private Integer bpLow; |
||||
|
@Excel(name = "心跳") |
||||
|
private Integer br; |
||||
|
@Excel(name = "呼吸频率") |
||||
|
private Integer hr; |
||||
|
@Excel(name = "心跳变异率") |
||||
|
private Integer hrv; |
||||
|
@Excel(name = "温度") |
||||
|
private Integer temperature; |
||||
|
@Excel(name = "是否允许上岗 0:否 1:是") |
||||
|
private Integer isWork; |
||||
|
@Excel(name = "创建时间", width = 20, dateFormat = "yyyy-MM-dd HH:mm:ss") |
||||
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
private Date createTime; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue