打字猴:1.70046131e+09
1700461310 //称谓
1700461311
1700461312 private String appellation;
1700461313
1700461314 //邮件内容
1700461315
1700461316 private String contxt;
1700461317
1700461318 //邮件的尾部,一般都是加上”XXX版权所有”等信息
1700461319
1700461320 private String tail;
1700461321
1700461322 //构造函数
1700461323
1700461324 public Mail(AdvTemplate advTemplate){
1700461325
1700461326 this.contxt=advTemplate.getAdvContext();
1700461327
1700461328 this.subject=advTemplate.getAdvSubject();
1700461329
1700461330 }
1700461331
1700461332 //以下为getter/setter方法
1700461333
1700461334 public String getReceiver(){
1700461335
1700461336 return receiver;
1700461337
1700461338 }
1700461339
1700461340 public void setReceiver(String receiver){
1700461341
1700461342 this.receiver=receiver;
1700461343
1700461344 }
1700461345
1700461346 public String getSubject(){
1700461347
1700461348 return subject;
1700461349
1700461350 }
1700461351
1700461352 public void setSubject(String subject){
1700461353
1700461354 this.subject=subject;
1700461355
1700461356 }
1700461357
1700461358 public String getAppellation(){
1700461359
[ 上一页 ]  [ :1.70046131e+09 ]  [ 下一页 ]