package com.gkhy.safePlatform.specialWork.model.dto.resp; import java.io.Serializable; public class WorkApplyHotRespDTO extends WorkApplyEightRespDTO implements Serializable { private static final long serialVersionUID = 1585114854056582682L; private Long hotId; private String hotMethod; private Long workApplyId; private String otherSpecialWork; public Long getHotId() { return hotId; } public void setHotId(Long hotId) { this.hotId = hotId; } public String getHotMethod() { return hotMethod; } public void setHotMethod(String hotMethod) { this.hotMethod = hotMethod; } public Long getWorkApplyId() { return workApplyId; } public void setWorkApplyId(Long workApplyId) { this.workApplyId = workApplyId; } public String getOtherSpecialWork() { return otherSpecialWork; } public void setOtherSpecialWork(String otherSpecialWork) { this.otherSpecialWork = otherSpecialWork; } }