gongchunyi
4 天以前 01b9fbea755e02deee2dd870b7538722a0f417e4
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;
}