Blame view

java110-bean/src/main/java/com/java110/dto/wechat/Content.java 595 Bytes
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
  package com.java110.dto.wechat;
  
  /**
   * @description: 消息内容字体颜色
   * @author: zcc
   * @create: 2020-06-16 09:46
   **/
  public class Content {
      private String value;//消息内容
      private String color = "#173177"; //消息字体颜色
  
      public Content( String value) {
         this.value = value;
      }
  
      public String getValue() {
          return value;
      }
  
      public void setValue(String value) {
          this.value = value;
      }
  
      public String getColor() {
          return color;
      }
  
      public void setColor(String color) {
          this.color = color;
      }
  }