EquipmentMaintainPlanDTO.java 901 字节
package com.skua.modules.equipment.dto;

import com.skua.modules.equipment.entity.EquipmentMaintainPlan;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.util.Date;
import java.util.List;

@Data
public class EquipmentMaintainPlanDTO extends EquipmentMaintainPlan {

    @ApiModelProperty(value = "设备id集合")
    private List<String> equipmentIds;
    @ApiModelProperty(value = "保养标准id集合")
    private List<String>standardIds;
    @ApiModelProperty(value = "备品id集合")
    private List<SparePartDTO>sparePartIds;
    @ApiModelProperty(value = "保养模式")
    private String maintenanceMode;
    @ApiModelProperty(value = "保养等级")
    private String maintenanceLevel;
    @ApiModelProperty(value = "查询用设备id")
    private String equipmentId;
    @ApiModelProperty(value = "查询用检定时间")
    private Date testTime;

}