java110
2021-08-19 6e8c95d31d85b53857e4e3ce12ea303eb0ea42eb
java110-bean/src/main/java/com/java110/dto/reportInfoAnswerValue/ReportInfoAnswerValueDto.java
@@ -23,6 +23,15 @@
private String settingId;
private String userName;
private String repName;
private String repTitle;
private String repValue;
private String reType;
private String repTypeName;
    private Date createTime;
    private String statusCd = "0";
@@ -87,4 +96,52 @@
    public void setStatusCd(String statusCd) {
        this.statusCd = statusCd;
    }
    public String getUserName() {
        return userName;
    }
    public void setUserName(String userName) {
        this.userName = userName;
    }
    public String getRepName() {
        return repName;
    }
    public void setRepName(String repName) {
        this.repName = repName;
    }
    public String getRepTitle() {
        return repTitle;
    }
    public void setRepTitle(String repTitle) {
        this.repTitle = repTitle;
    }
    public String getRepValue() {
        return repValue;
    }
    public void setRepValue(String repValue) {
        this.repValue = repValue;
    }
    public String getReType() {
        return reType;
    }
    public void setReType(String reType) {
        this.reType = reType;
    }
    public String getRepTypeName() {
        return repTypeName;
    }
    public void setRepTypeName(String repTypeName) {
        this.repTypeName = repTypeName;
    }
}