admin
2022-03-28 2f5935ed11672046c37f733d855214f6147b4b58
fanli/src/main/java/com/yeshi/fanli/dto/push/PushContentDTO.java
@@ -1,31 +1,31 @@
package com.yeshi.fanli.dto.push;
//推送内容
public class PushContentDTO {
   private String title;
   private String content;
   public PushContentDTO(String title, String content) {
      this.title = title;
      this.content = content;
   }
   public PushContentDTO() {
   }
   public String getTitle() {
      return title;
   }
   public void setTitle(String title) {
      this.title = title;
   }
   public String getContent() {
      return content;
   }
   public void setContent(String content) {
      this.content = content;
   }
}
package com.yeshi.fanli.dto.push;
//推送内容
public class PushContentDTO {
   private String title;
   private String content;
   public PushContentDTO(String title, String content) {
      this.title = title;
      this.content = content;
   }
   public PushContentDTO() {
   }
   public String getTitle() {
      return title;
   }
   public void setTitle(String title) {
      this.title = title;
   }
   public String getContent() {
      return content;
   }
   public void setContent(String content) {
      this.content = content;
   }
}