Blame view

java110-bean/src/main/java/com/java110/dto/payFee/PayFeeDetailRefreshFeeMonthDto.java 931 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  package com.java110.dto.payFee;
  
  import java.io.Serializable;
  import java.util.List;
  
  /**
   * 缴费离散月对象
   *
   */
  public class PayFeeDetailRefreshFeeMonthDto implements Serializable {
      private String communityId;
      private String feeId;
      private String detailId;
  
      private List<String> feeIds;
  
      public String getCommunityId() {
          return communityId;
      }
  
      public void setCommunityId(String communityId) {
          this.communityId = communityId;
      }
  
      public String getFeeId() {
          return feeId;
      }
  
      public void setFeeId(String feeId) {
          this.feeId = feeId;
      }
  
      public String getDetailId() {
          return detailId;
      }
  
      public void setDetailId(String detailId) {
          this.detailId = detailId;
      }
  
      public List<String> getFeeIds() {
          return feeIds;
      }
  
      public void setFeeIds(List<String> feeIds) {
          this.feeIds = feeIds;
      }
  }