| | |
| | | package com.panzhihua.common.model.dtos.grid; |
| | | |
| | | import java.util.List; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import javax.validation.constraints.Max; |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.List; |
| | | |
| | | |
| | | /** |
| | | * 网格员密码重置请求参数 |
| | |
| | | * @version 1.0 |
| | | * @since 1.0 |
| | | * @date 2021-05-26 |
| | | * */ |
| | | */ |
| | | @Data |
| | | @ApiModel("网格员密码重置请求参数") |
| | | public class EventGridMemberPassResetDTO { |
| | | |
| | | @NotBlank(message = "登录密码不能为空") |
| | | @Length(min = 8, max=100) |
| | | @Length(min = 8, max = 100) |
| | | @ApiModelProperty(value = "登录密码", hidden = false, example = "") |
| | | private String password; |
| | | |