From f79cc57f17df4a5a287b0b3f1907d7d7fa871f63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B2=E6=A0=91=E9=80=9A?= <1976590620@qq.com> Date: Wed, 27 Apr 2022 10:18:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B8=E7=AE=97=E6=A3=80=E6=B5=8B=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E6=89=8B=E6=9C=BA=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../esua/epdc/dto/PersonInfoPhoneDTO.java | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/PersonInfoPhoneDTO.java diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/PersonInfoPhoneDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/PersonInfoPhoneDTO.java new file mode 100644 index 0000000..62952e2 --- /dev/null +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/PersonInfoPhoneDTO.java @@ -0,0 +1,51 @@ +/** + * Copyright 2018 人人开源 https://www.renren.io + *

+ * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + *

+ * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + *

+ * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package com.elink.esua.epdc.dto; + +import lombok.Data; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; +import java.util.Date; + + + +/** + * @author: qushutong + * @Date: 2022/4/26 9:55 + * @Description: 手机端获取消息 + */ +@Data +public class PersonInfoPhoneDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + + /** + * 姓名 + */ + @NotNull(message = "姓名不能为空") + private String userName; + + + /** + * 手机号 + */ + private String mobile; + +}