2d8e876face896c63c233b7ca5c4eae562d699d0.svn-base 657 B

123456789101112131415161718192021222324252627282930313233343536
  1. package cn.com.goldenwater.dcproj.dto;
  2. import java.io.Serializable;
  3. public class UserLineDto implements Serializable {
  4. private int persTotal;
  5. private int activeUser;
  6. private String orgId;
  7. public int getPersTotal() {
  8. return persTotal;
  9. }
  10. public void setPersTotal(int persTotal) {
  11. this.persTotal = persTotal;
  12. }
  13. public int getActiveUser() {
  14. return activeUser;
  15. }
  16. public void setActiveUser(int activeUser) {
  17. this.activeUser = activeUser;
  18. }
  19. public String getOrgId() {
  20. return orgId;
  21. }
  22. public void setOrgId(String orgId) {
  23. this.orgId = orgId;
  24. }
  25. }