jialh
1 天以前 dd6687b118561100e1677e88a9c2f5842a54c531
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
package com.java110.dto.importData;
 
import com.java110.dto.PageDto;
 
import java.io.Serializable;
 
/**
 * 维修资金支取信息查询DTO
 * 继承PageDto实现分页能力
 */
public class MaintenancePaymentDto extends PageDto implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    // 主键ID
    private Long id;
    // 小区ID
    private String communityId;
    // 流转编号
    private String flowNumber;
    // 项目编码
    private String projectCode;
    // 年份
    private Integer year;
    // 其他查询字段(按需添加)
    private String projectName;
    private Integer month;
 
    // getter/setter方法
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getFlowNumber() {
        return flowNumber;
    }
 
    public void setFlowNumber(String flowNumber) {
        this.flowNumber = flowNumber;
    }
 
    public String getProjectCode() {
        return projectCode;
    }
 
    public void setProjectCode(String projectCode) {
        this.projectCode = projectCode;
    }
 
    public Integer getYear() {
        return year;
    }
 
    public void setYear(Integer year) {
        this.year = year;
    }
 
    public String getProjectName() {
        return projectName;
    }
 
    public void setProjectName(String projectName) {
        this.projectName = projectName;
    }
 
    public Integer getMonth() {
        return month;
    }
 
    public void setMonth(Integer month) {
        this.month = month;
    }
}