ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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 com.fasterxml.jackson.annotation.JsonIgnore;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.hibernate.validator.constraints.NotBlank;
 
/**
 * 存草稿
 */
@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;
 
}