gongchunyi
6 天以前 e9517cc294c2d8252b5f1db8d214f6c1b0df1686
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.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
public class DeviceDefectRecordDto extends DeviceDefectRecord {
    @Schema(description = "设备名称")
    private String deviceName;
 
    @Schema(description = "设备型号")
    private String deviceModel;
}