Blame view

java110-bean/src/main/java/com/java110/dto/wechat/Data.java 1.63 KB
88e030b7   王彪总   init project
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
  package com.java110.dto.wechat;
  
  /**
   * @description: 物业费消息模板data
   * @author: zcc
   * @create: 2020-06-16 09:43
   * <p>
   * <p>
   * 标题物业缴费通知
   * 行业IT科技 - 互联网|电子商务
   * 详细内容{{first.DATA}}
   * 用户地址:{{keyword1.DATA}}
   * 物业费月份:{{keyword2.DATA}}
   * 物业费金额:{{keyword3.DATA}}
   * {{remark.DATA}}
   **/
  public class Data {
      private Content first;
      private Content keyword1;
      private Content keyword2;
      private Content keyword3;
      private Content keyword4;
      private Content keyword5;
      private Content remark;
  
      public Content getFirst() {
          return first;
      }
  
      public void setFirst(Content first) {
          this.first = first;
      }
  
      public Content getKeyword1() {
          return keyword1;
      }
  
      public void setKeyword1(Content keyword1) {
          this.keyword1 = keyword1;
      }
  
      public Content getKeyword2() {
          return keyword2;
      }
  
      public void setKeyword2(Content keyword2) {
          this.keyword2 = keyword2;
      }
  
      public Content getKeyword3() {
          return keyword3;
      }
  
      public void setKeyword3(Content keyword3) {
          this.keyword3 = keyword3;
      }
  
      public Content getKeyword4() {
          return keyword4;
      }
  
      public void setKeyword4(Content keyword4) {
          this.keyword4 = keyword4;
      }
  
      public Content getKeyword5() {
          return keyword5;
      }
  
      public void setKeyword5(Content keyword5) {
          this.keyword5 = keyword5;
      }
  
      public Content getRemark() {
          return remark;
      }
  
      public void setRemark(Content remark) {
          this.remark = remark;
      }
  }