feat(mcwl-communityCenter): 添加问题解决状态字段

feature/admin
yang 2025-04-28 10:31:17 +08:00
parent fadfd8058f
commit fd2d1d62ef
2 changed files with 11 additions and 0 deletions

View File

@ -124,6 +124,11 @@ public class PersonHomeVo {
@ApiModelProperty(value = "付费金额 当提问类型为付费时必填") @ApiModelProperty(value = "付费金额 当提问类型为付费时必填")
private Double amount; private Double amount;
/**
* 0 1
*/
private Integer status;
/** /**
* *
*/ */

View File

@ -92,6 +92,12 @@ public class QuestionVo {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date createTime; private Date createTime;
/**
* 0 1
*/
@ApiModelProperty(value = "状态 0未解决 1已解决")
private Integer status;
} }