feat:平台账号

This commit is contained in:
苏竹红
2025-04-10 20:29:57 +08:00
parent f9219e028e
commit 080019ac0d
19 changed files with 111 additions and 41 deletions

View File

@@ -13,10 +13,14 @@ import java.util.List;
@Data
public class ModifyPasswordDTO {
@ApiModelProperty(value = "手机号",hidden = true)
private String mobile;
@ApiModelProperty(value = "盐值",required = true)
String passwordSalt;
@ApiModelProperty(value = "密码",required = true)
String password;
@ApiModelProperty(value = "第二密码",required = true)
String passwordSecondary;
@ApiModelProperty(value = "门店ID",required = true)
Long shopId;
@ApiModelProperty(value = "门店ID",hidden = true)

View File

@@ -57,4 +57,8 @@ public class HyPartnerUserInfoDO implements Serializable {
@ApiModelProperty("下游系统密码")
@Column(name = "downstream_system_password")
private String downstreamSystemPassword;
@ApiModelProperty("下游系统第二密码")
@Column(name = "downstream_system_Secondary_password")
private String downstreamSystemSecondaryPassword;
}

View File

@@ -49,6 +49,11 @@ public class ShopAccountDO {
*/
private String password;
/**
* 第二密码
*/
private String secondaryPassword;
/**
* 状态1-开通资料收集中, 2-资料审核中, 3-资料审核失败, 4-开通中, 5-开通成功, 6-开通失败
*/