feat(mcwl-communityCenter): 添加问题解决状态字段
parent
fadfd8058f
commit
fd2d1d62ef
|
@ -124,6 +124,11 @@ public class PersonHomeVo {
|
||||||
@ApiModelProperty(value = "付费金额 当提问类型为付费时必填")
|
@ApiModelProperty(value = "付费金额 当提问类型为付费时必填")
|
||||||
private Double amount;
|
private Double amount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态 0未解决 1已解决
|
||||||
|
*/
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建时间
|
* 创建时间
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue