3881e01fc70a3fd5672e6146cc494cc31e3c01ef.svn-base 776 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. /**
  5. * Created by jinshui on 2019/9/25.
  6. */
  7. public class PersCountDto implements Serializable {
  8. @ApiModelProperty("组id")
  9. private String id;
  10. @ApiModelProperty("人员数量")
  11. private String count;
  12. @ApiModelProperty("类型")
  13. private String type;
  14. public String getType() {
  15. return type;
  16. }
  17. public void setType(String type) {
  18. this.type = type;
  19. }
  20. public String getId() {
  21. return id;
  22. }
  23. public void setId(String id) {
  24. this.id = id;
  25. }
  26. public String getCount() {
  27. return count;
  28. }
  29. public void setCount(String count) {
  30. this.count = count;
  31. }
  32. }