| 123456789101112131415161718192021222324252627282930313233343536 |
- package cn.com.goldenwater.dcproj.dto;
- import java.io.Serializable;
- public class UserLineDto implements Serializable {
- private int persTotal;
- private int activeUser;
- private String orgId;
- public int getPersTotal() {
- return persTotal;
- }
- public void setPersTotal(int persTotal) {
- this.persTotal = persTotal;
- }
- public int getActiveUser() {
- return activeUser;
- }
- public void setActiveUser(int activeUser) {
- this.activeUser = activeUser;
- }
- public String getOrgId() {
- return orgId;
- }
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- }
|