1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.qxgmat.dto;
- import javax.validation.constraints.NotBlank;
- import javax.validation.constraints.NotNull;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * Created by GaoJie on 2017/11/3.
- */
- public class SmsSessionDto implements Serializable {
- @NotBlank
- private String code;
- private String area;
- @NotBlank
- private String mobile;
- @NotNull
- private Date expireTime;
- private Object response;
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public Object getResponse() {
- return response;
- }
- public void setResponse(Object response) {
- this.response = response;
- }
- public Date getExpireTime() {
- return expireTime;
- }
- public void setExpireTime(Date expireTime) {
- this.expireTime = expireTime;
- }
- public String getMobile() {
- return mobile;
- }
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
- public String getArea() {
- return area;
- }
- public void setArea(String area) {
- this.area = area;
- }
- }
|