gongchunyi
4 天以前 8240a8b7e205b7d337f1a8b3c0bef6b9eb7488f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.device.dto;
 
import com.ruoyi.device.pojo.DeviceDefectRecord;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class DeviceDefectRecordDto extends DeviceDefectRecord {
    @ApiModelProperty("设备名称")
    private String deviceName;
 
    @ApiModelProperty("设备型号")
    private String deviceModel;
}