|
|
|
@@ -57,18 +57,15 @@ public class WxQuestionConfig implements Serializable { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="更新时间",name="updateTime") |
|
|
|
private Date updateTime; |
|
|
|
|
|
|
|
public Integer getStatus() { |
|
|
|
return status; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStatus(Integer status) { |
|
|
|
this.status = status; |
|
|
|
} |
|
|
|
|
|
|
|
/**状态**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="状态",name="status") |
|
|
|
private Integer status; |
|
|
|
|
|
|
|
/**状态**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="调查力度0-100",name="strength") |
|
|
|
private Integer strength; |
|
|
|
|
|
|
|
|
|
|
|
public String getTenantId() { |
|
|
|
return tenantId; |
|
|
|
} |
|
|
|
@@ -109,6 +106,22 @@ public class WxQuestionConfig implements Serializable { |
|
|
|
this.updateTime = updateTime; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getStatus() { |
|
|
|
return status; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStatus(Integer status) { |
|
|
|
this.status = status; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public Integer getStrength() { |
|
|
|
return strength; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStrength(Integer strength) { |
|
|
|
this.strength = strength; |
|
|
|
} |
|
|
|
|
|
|
|
@Transient |
|
|
|
protected List<WxQuestion> questions; |
|
|
|
|