| 123456789101112131415161718192021222324252627282930313233343536 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * GwStaticUserParam
- *
- * @author lune
- * @date 2020-3-20
- */
- public class GwStaticUserParam extends PageParam implements Serializable {
- private String phone;
- private String id;
- public GwStaticUserParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPhone() {
- return phone;
- }
- public void setPhone(String phone) {
- this.phone = phone;
- }
- }
|