Blame view

java110-bean/src/main/java/com/java110/dto/notice/NoticeStaffDto.java 2.11 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
82
83
84
85
86
87
88
89
90
91
  package com.java110.dto.notice;
  
  import java.io.Serializable;
  
  public class NoticeStaffDto implements Serializable {
  
      private String communityId;
      private String staffId;
      private String title;
  
      private String notifyUserName;
  
      private String url;
  
      public NoticeStaffDto() {
      }
  
      /**
       * 通知实体
       * "流程名称", "发起时间", "发起人"
       *
       * @param communityId    小区
       * @param staffId        通知人
       * @param title          流程名称
       * @param notifyUserName 发起人
       */
      public NoticeStaffDto(String communityId, String staffId, String title, String notifyUserName) {
          this.communityId = communityId;
          this.staffId = staffId;
          this.title = title;
          this.notifyUserName = notifyUserName;
      }
  
      /**
       * 通知实体
       * "流程名称", "发起时间", "发起人"
       *
       * @param communityId    小区
       * @param staffId        通知人
       * @param title          流程名称
       * @param notifyUserName 发起人
       * @param url            打开地址
       */
      public NoticeStaffDto(String communityId, String staffId, String title, String notifyUserName, String url) {
          this.communityId = communityId;
          this.staffId = staffId;
          this.title = title;
          this.notifyUserName = notifyUserName;
          this.url = url;
      }
  
      public String getCommunityId() {
          return communityId;
      }
  
      public void setCommunityId(String communityId) {
          this.communityId = communityId;
      }
  
      public String getStaffId() {
          return staffId;
      }
  
      public void setStaffId(String staffId) {
          this.staffId = staffId;
      }
  
      public String getTitle() {
          return title;
      }
  
      public void setTitle(String title) {
          this.title = title;
      }
  
      public String getNotifyUserName() {
          return notifyUserName;
      }
  
      public void setNotifyUserName(String notifyUserName) {
          this.notifyUserName = notifyUserName;
      }
  
      public String getUrl() {
          return url;
      }
  
      public void setUrl(String url) {
          this.url = url;
      }
  }