更改部分文本细节

This commit is contained in:
lyf 2023-03-20 10:14:47 +08:00
parent 807720e916
commit efc6019f59
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ public class MerchantStaffConnServiceImpl extends ServiceImpl<MerchantStaffConnM
@Override
@Transactional(rollbackFor = Exception.class)
public UserApp createStaff(MerchantStaffDTO staffDTO) {
String loginName = staffDTO.getLoginName().replace("@chaozg", "");
String loginName = staffDTO.getLoginName().replace("@kuaiyin", "");
if (loginName.contains("@")) {
throw new MsgException("员工账号请不要带@");
}

View File

@ -320,7 +320,7 @@ public class MerchantMenberServiceImpl extends ServiceImpl<MerchantMenberMapper,
Long reType = (Long)map.get("reType");
if(reType == 2){
Double percent = (Double)map.get("percent");
title = "会员消费返任意金额的"+percent+"%";
title = "会员返任意金额的"+percent+"%";
}else{
title = "消费满"+map.get("rechargeMoney")+"元返"+map.get("giveMoney")+"";
}