pc端和小程序端用户id处理

This commit is contained in:
戈经莹
2026-07-28 10:56:35 +08:00
parent 69270286bb
commit 937349dac7
6 changed files with 88 additions and 11 deletions

View File

@@ -17,4 +17,7 @@ public class PolicyConsultSatisfactionDTO {
@ApiModelProperty(value = "满意度", required = true, example = "1")
@NotNull(message = "满意度不能为空")
private Integer satisfaction;
@ApiModelProperty(value = "用户ID")
private Long userId;
}

View File

@@ -20,4 +20,7 @@ public class PolicyConsultSubmitDTO {
@NotNull(message = "咨询渠道不能为空( 渠道固定传 MESSAGE_BOARD留言板渠道")
@ApiModelProperty(value = "咨询渠道", required = true, example = "MESSAGE_BOARD")
private String consultChannel;
@ApiModelProperty(value = "咨询用户ID")
private Long userId;
}