保誠-保戶業務員媒合平台
wayne
2022-02-17 a3716f72066d25d745f4d5103ff23a553c3e102b
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.pollex.pam.service.dto;
 
import java.util.List;
 
public class SendMailRequest {
 
    /**
     * 收件者
     */
    private List<String> sendMailAddresses;
    /**
     * 副本
     */
    private List<String> sendCCMailAddresses;
    /**
     * 主題
     */
    private String subject;
    /**
     * 內文
     */
    private String content;
    /**
     * 寄件者
     */
    private String from;
    /**
     * 附件路徑
     */
    private List<String> attachments;
    /**
     * 是否 html format
     */
    private boolean htmlFormat;
    /**
     * 自定義訊息分類 (因應保誠的要求,先暫時寫死城epos)
     */
    private String functionId;
 
    public List<String> getSendMailAddresses() {
        return sendMailAddresses;
    }
 
    public void setSendMailAddresses(List<String> sendMailAddresses) {
        this.sendMailAddresses = sendMailAddresses;
    }
 
    public List<String> getSendCCMailAddresses() {
        return sendCCMailAddresses;
    }
 
    public void setSendCCMailAddresses(List<String> sendCCMailAddresses) {
        this.sendCCMailAddresses = sendCCMailAddresses;
    }
 
    public String getSubject() {
        return subject;
    }
 
    public void setSubject(String subject) {
        this.subject = subject;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getFrom() {
        return from;
    }
 
    public void setFrom(String from) {
        this.from = from;
    }
 
    public List<String> getAttachments() {
        return attachments;
    }
 
    public void setAttachments(List<String> attachments) {
        this.attachments = attachments;
    }
 
    public boolean isHtmlFormat() {
        return htmlFormat;
    }
 
    public void setHtmlFormat(boolean htmlFormat) {
        this.htmlFormat = htmlFormat;
    }
 
    public String getFunctionId() {
        return functionId;
    }
 
    public void setFunctionId(String functionId) {
        this.functionId = functionId;
    }
}