admin
2019-08-08 3fc84b5d4b36ce9ab5cea84ee1b54942c8e04ef9
fanli/src/main/java/com/yeshi/fanli/vo/msg/CommonMsgItemVO.java
@@ -5,12 +5,27 @@
public class CommonMsgItemVO {
   private ClientTextStyleVO title;
   private List<ClientTextStyleVO> content;
   private boolean click;
   public boolean isClick() {
      return click;
   }
   public void setClick(boolean click) {
      this.click = click;
   }
   public CommonMsgItemVO(ClientTextStyleVO title, List<ClientTextStyleVO> content) {
      this.title = title;
      this.content = content;
   }
   public CommonMsgItemVO(ClientTextStyleVO title, List<ClientTextStyleVO> content, boolean click) {
      this.title = title;
      this.content = content;
      this.click = click;
   }
   public CommonMsgItemVO() {
   }