yys
maven
4 天以前 abe25fd4ae6f6c3c928682d5de15a0e1ed8b7654
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;
}