package com.gk.hotwork.doublePrevention.entity.dto.report;
|
|
public class ReportResultDTO {
|
|
private String code;
|
|
private String msg;
|
|
private ReportResultObjDTO obj;
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getMsg() {
|
return msg;
|
}
|
|
public void setMsg(String msg) {
|
this.msg = msg;
|
}
|
|
public ReportResultObjDTO getObj() {
|
return obj;
|
}
|
|
public void setObj(ReportResultObjDTO obj) {
|
this.obj = obj;
|
}
|
}
|