AnnouncementUserFindResponse.java
1.31 KB
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
/*
* @(#)AnnouncementUserFindResponse.java
*
* Copyright (c) 2014-2017 版权所有
* xiniunet. All rights reserved.
*
* This software is the confidential and proprietary
* information of xiniunet.
* ("Confidential Information"). You shall not disclose
* such Confidential Information and shall use it only
* in accordance with the terms of the contract agreement
* you entered into with xiniunet.
*/
package com.xiniunet.announcement.response;
import com.xiniunet.announcement.domain.AnnouncementUser;
import com.xiniunet.announcement.domain.ConfirmUserCount;
import com.xiniunet.framework.base.BaseFindResponse;
/**
* 高级查询被通知用户的响应.
* @author
*/
public class AnnouncementUserFindResponse extends BaseFindResponse<AnnouncementUser> {
/**
* 已确认人数
*/
private Long confirmUserCount;
/**
* 未确认人数
*/
private Long unConfirmUserCount;
public Long getConfirmUserCount() {
return confirmUserCount;
}
public void setConfirmUserCount(Long confirmUserCount) {
this.confirmUserCount = confirmUserCount;
}
public Long getUnConfirmUserCount() {
return unConfirmUserCount;
}
public void setUnConfirmUserCount(Long unConfirmUserCount) {
this.unConfirmUserCount = unConfirmUserCount;
}
}