sweb供应商自助修改密码
parent
18400f3c7e
commit
317d1c6129
@ -0,0 +1,29 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.sweb.modelbean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2022/3/24 16:20
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@ApiModel("供应商自助修改密码")
|
||||||
|
public class SwebUpdateVendorPwdModel {
|
||||||
|
|
||||||
|
@ApiModelProperty("供应商登录名")
|
||||||
|
private String loginName;
|
||||||
|
|
||||||
|
@ApiModelProperty("供应商邮箱")
|
||||||
|
private String email;
|
||||||
|
|
||||||
|
@ApiModelProperty("供应商新密码")
|
||||||
|
private String password;
|
||||||
|
|
||||||
|
@ApiModelProperty("验证码")
|
||||||
|
private String authCode;
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.sweb.modelbean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2022/3/23 22:54
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "供应商验证对象")
|
||||||
|
public class SwebVerifyVendorModel {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "供应商登录名")
|
||||||
|
private String loginName;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "供应商邮箱")
|
||||||
|
private String email;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue