package com.doumee.dao.dto; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import javax.validation.constraints.NotEmpty; import java.io.Serializable; /** * 司机登录请求类 * @author rk * @date 2026/04/08 */ @Data @ApiModel("司机登录请求类") public class DriverLoginRequest implements Serializable { @NotEmpty(message = "手机号不能为空") @ApiModelProperty(value = "手机号", required = true) private String telephone; @NotEmpty(message = "密码不能为空") @ApiModelProperty(value = "登录密码", required = true) private String password; }