package com.gkhy.safePlatform.safeCheck.model.dto.req;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class ExcepOrderHandledAfterStatusByIdReqDTO implements Serializable {
|
|
private Long id;
|
|
//隐患处理描述
|
private String handlerDesc;
|
|
//图片地址
|
List<String> images;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getHandlerDesc() {
|
return handlerDesc;
|
}
|
|
public void setHandlerDesc(String handlerDesc) {
|
this.handlerDesc = handlerDesc;
|
}
|
|
public List<String> getImages() {
|
return images;
|
}
|
|
public void setImages(List<String> images) {
|
this.images = images;
|
}
|
}
|