用户信息返回是否开启支付密码

This commit is contained in:
张松
2025-11-13 11:09:51 +08:00
parent 23ee09a81b
commit cd168311f0
2 changed files with 2 additions and 0 deletions

View File

@@ -43,6 +43,7 @@ public class ShopUserDetailDTO extends ShopUser {
* 支付密码
*/
private String payPwd;
private Integer usePayPwd;
/**
* 店铺拓展参数
*/

View File

@@ -232,6 +232,7 @@ public class UShopUserServiceImpl implements UShopUserService {
shopUserDetailDTO.setFreeDineConfig(freeDineConfigService.getConfig(shopInfoService.getMainIdByShopId(shopId)));
shopUserDetailDTO.setPayPwd(userInfo.getPayPwd());
shopUserDetailDTO.setUsePayPwd(userInfo.getUsePayPwd());
return shopUserDetailDTO;
}