java110
2021-09-04 576c52d8d8e6fb1e738380cc5fc101a6a2b0b3a8
java110-bean/src/main/java/com/java110/dto/reportInfoAnswerValue/ReportInfoAnswerValueDto.java
@@ -14,6 +14,10 @@
 **/
public class ReportInfoAnswerValueDto extends PageDto implements Serializable {
    public static final String TITLETYPE_RADIO ="1001";
    public static final String TITLETYPE_CHECKBOX ="2002";
    public static final String ITLETYPE_TEXTAREA ="3003";
    private String valueId;
private String userAnId;
private String titleId;
@@ -21,6 +25,16 @@
private String valueContent;
private String communityId;
private String settingId;
private String userName;
private String repName;
private String repTitle;
private String repValue;
private String reType;
private String repTypeName;
private String personName;
    private Date createTime;
@@ -87,4 +101,60 @@
    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;
    }
    public String getPersonName() {
        return personName;
    }
    public void setPersonName(String personName) {
        this.personName = personName;
    }
}