郑永安
2023-06-19 9d488beac4ff8bdb47f90e2ddd5fd9d907371797
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.gkhy.labRiskManage.domain.basic.model.dto;
 
import java.time.LocalDateTime;
 
public class DeviceTypeDTO {
 
 
    private Long id;
    /**
     * 设备类型
     */
    private String deviceType;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getDeviceType() {
        return deviceType;
    }
 
    public void setDeviceType(String deviceType) {
        this.deviceType = deviceType;
    }
 
}