xiangpei
2025-05-14 47cd9ecc0eff38ffe6b3b794b2bf197e958f4403
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.mindskip.xzs.viewmodel.admin.message;
 
 
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Size;
import java.util.List;
 
 
public class MessageSendVM {
 
    @NotBlank
    private String title;
    @NotBlank
    private String content;
 
    @Size(min = 1, message = "接收人不能为空")
    private List<Integer> receiveUserIds;
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public List<Integer> getReceiveUserIds() {
        return receiveUserIds;
    }
 
    public void setReceiveUserIds(List<Integer> receiveUserIds) {
        this.receiveUserIds = receiveUserIds;
    }
}