package com.gk.hotwork.specialWork.model.dto.req;
|
|
import java.io.Serializable;
|
|
public class WorkApplyHotReqDTO extends WorkApplyEight implements Serializable {
|
|
private static final long serialVersionUID = 5010351959673846801L;
|
|
// 动火方式
|
private String hotMethod;
|
|
// 涉及其他作业
|
private String otherSpecialWork;
|
|
public String getHotMethod() {
|
return hotMethod;
|
}
|
|
public void setHotMethod(String hotMethod) {
|
this.hotMethod = hotMethod;
|
}
|
|
public String getOtherSpecialWork() {
|
return otherSpecialWork;
|
}
|
|
public void setOtherSpecialWork(String otherSpecialWork) {
|
this.otherSpecialWork = otherSpecialWork;
|
}
|
|
|
}
|