|
@@ -4,6 +4,7 @@ import com.yonge.cooleshow.biz.dal.enums.AuditStatusEnum;
|
|
|
import com.yonge.cooleshow.common.page.QueryInfo;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
+import javax.validation.constraints.NotBlank;
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
|
|
public class ImGroupMemberAuditQueryInfo extends QueryInfo {
|
|
@@ -14,15 +15,15 @@ public class ImGroupMemberAuditQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "用户编号")
|
|
|
private Long userId;
|
|
|
|
|
|
- @NotNull(message = "群编号不可为空")
|
|
|
+ @NotBlank(message = "群编号不可为空")
|
|
|
@ApiModelProperty(value = "群编号")
|
|
|
- private Long groupId;
|
|
|
+ private String groupId;
|
|
|
|
|
|
- public Long getGroupId() {
|
|
|
+ public String getGroupId() {
|
|
|
return groupId;
|
|
|
}
|
|
|
|
|
|
- public void setGroupId(Long groupId) {
|
|
|
+ public void setGroupId(String groupId) {
|
|
|
this.groupId = groupId;
|
|
|
}
|
|
|
|