1d07fd937d002b807c1a5ae01332812f9342e2e4.svn-base 712 B

123456789101112131415161718192021222324252627282930313233343536
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * GwStaticUserParam
  9. *
  10. * @author lune
  11. * @date 2020-3-20
  12. */
  13. public class GwStaticUserParam extends PageParam implements Serializable {
  14. private String phone;
  15. private String id;
  16. public GwStaticUserParam() {
  17. }
  18. public String getId() {
  19. return id;
  20. }
  21. public void setId(String id) {
  22. this.id = id;
  23. }
  24. public String getPhone() {
  25. return phone;
  26. }
  27. public void setPhone(String phone) {
  28. this.phone = phone;
  29. }
  30. }