刘光辉
13 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
package jnpf.model.email;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotBlank;
import lombok.Data;
 
 
/**
 * 存草稿
 */
@Data
public class EmailSendCrForm {
//    @JsonIgnore
    @Schema(description ="id",hidden = true)
    private String id;
 
    @Schema(description ="抄送人")
    private String cc;
 
    @Schema(description ="密送人")
    private String bcc;
 
    @Schema(description ="正文")
    private String bodyText;
 
    @Schema(description ="附件")
    private String attachment;
 
    @NotBlank(message = "必填")
    @Schema(description ="主题")
    private String subject;
 
    @NotBlank(message = "必填")
    @Schema(description ="收件人")
    private String recipient;
 
}