| | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.dsh.account.dto.SelectDto; |
| | | import com.dsh.account.dto.UserInfoQueryDTO; |
| | | import com.dsh.account.entity.*; |
| | | import com.dsh.account.enums.RechargeRecordEnum; |
| | | import com.dsh.account.feignclient.activity.IntroduceRewardsClient; |
| | |
| | | import com.dsh.account.service.TAppUserService; |
| | | import com.dsh.account.util.*; |
| | | import com.dsh.account.util.akeylogin.Md5Util; |
| | | import com.dsh.account.vo.GroupCityInfoVO; |
| | | import com.dsh.account.vo.entity.DayData; |
| | | import com.dsh.account.vo.entity.MonthData; |
| | | import com.dsh.account.vo.entity.WeekData; |
| | | import com.dsh.account.vo.entity.YearData; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.data.domain.Page; |
| | | import org.springframework.data.domain.PageImpl; |
| | |
| | | import java.math.BigDecimal; |
| | | import java.text.ParseException; |
| | | import java.text.SimpleDateFormat; |
| | | import java.time.LocalDate; |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | | |
| | |
| | | } |
| | | |
| | | @Override |
| | | public Object changeState(AdvertisementChangeStateDTO dto) { |
| | | return appUserMapper.changeState(dto.getIds(),dto.getState()); |
| | | } |
| | | |
| | | @Override |
| | | public List<TAppUser> queryAPPUserByNameAndPhone(AppUserByNameAndPhoneDTO dto) { |
| | | return appUserMapper.queryAPPUserByNameAndPhone(dto); |
| | | } |
| | | @Override |
| | | public List<YearData> getYearUserCount(UserInfoQueryDTO dto) { |
| | | return appUserMapper.getYearUserCount(dto); |
| | | } |
| | | |
| | | @Override |
| | | public List<MonthData> getMonthUserCount(UserInfoQueryDTO dto) { |
| | | List<MonthData> monthUserCount = appUserMapper.getMonthUserCount(dto); |
| | | for (int i = 1; i <= 12; i++) { |
| | | String time = String.valueOf(i); |
| | | if (i < 10) { |
| | | time = "0" + time; |
| | | } |
| | | monthUserCount.add(Optional.ofNullable(monthUserCount.get(i)).orElse(new MonthData(time, 0))); |
| | | } |
| | | return monthUserCount.stream().sorted(Comparator.comparing(MonthData::getMonth)).collect(Collectors.toList()); |
| | | } |
| | | |
| | | @Override |
| | | public WeekData getWeekUserCount4(UserInfoQueryDTO dto) { |
| | | return appUserMapper.getWeekUserCount4(dto); |
| | | } |
| | | @Override |
| | | public WeekData getWeekUserCount3(UserInfoQueryDTO dto) { |
| | | return appUserMapper.getWeekUserCount3(dto); |
| | | } |
| | | @Override |
| | | public WeekData getWeekUserCount2(UserInfoQueryDTO dto) { |
| | | return appUserMapper.getWeekUserCount2(dto); |
| | | } |
| | | @Override |
| | | public WeekData getWeekUserCount1(UserInfoQueryDTO dto) { |
| | | return appUserMapper.getWeekUserCount1(dto); |
| | | } |
| | | |
| | | @Override |
| | | public List<DayData> getDayUserCount(UserInfoQueryDTO dto) { |
| | | List<DayData> dayUserCount = appUserMapper.getDayUserCount(dto); |
| | | if(dayUserCount.size()<7){ |
| | | for (int i = 1; i <= 6; i++) { |
| | | String time = LocalDate.now().minusDays(i).toString(); |
| | | for (DayData dayData : dayUserCount) { |
| | | if(!time.equals(dayData.getDay())){ |
| | | dayUserCount.add(new DayData(time,0)); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | dayUserCount.forEach(dayData->dayData.setDay(dayData.getDay().split("-")[2])); |
| | | return dayUserCount.stream().sorted(Comparator.comparing(DayData::getDay)).collect(Collectors.toList()); |
| | | } |
| | | |
| | | @Override |
| | | public List<GroupCityInfoVO> groupCityInfo(UserInfoQueryDTO dto) { |
| | | return appUserMapper.groupCityInfo(dto); |
| | | } |
| | | @Override |
| | | public ClassInfoVo queryUserOfStus(Integer id) { |
| | | TAppUser tAppUser = this.baseMapper.selectById(id); |
| | | ClassInfoVo classInfoVo = new ClassInfoVo(); |
| | |
| | | coursePackIds = stuCoursePayment.stream().map(StuCourseResp::getCourseId).collect(Collectors.toList()); |
| | | for (StuCourseResp tCoursePackagePayment : stuCoursePayment) { |
| | | RegisteredCourse course = new RegisteredCourse(); |
| | | course.setId(tCoursePackagePayment.getId()); |
| | | course.setCourseId(tCoursePackagePayment.getCourseId()); |
| | | course.setCourseName(tCoursePackagePayment.getCourseName()); |
| | | course.setTotalNums(ToolUtil.isEmpty(tCoursePackagePayment.getTotalCourseNums()) ? 0 : tCoursePackagePayment.getTotalCourseNums()); |
| | |
| | | course.setPeriodOfValidity(tCoursePackagePayment.getPeriodOfValidity()); |
| | | courseList.add(course); |
| | | } |
| | | |
| | | } |
| | | classInfoVo.setCourseList(courseList); |
| | | List<ExerciseVideo> stuCourseOfVideoList = voclClient.getStuCourseOfVideoList(coursePackIds); |
| | |
| | | tAppUser = new TAppUser(); |
| | | tAppUser.setCode(UUIDUtil.getNumberRandom(16)); |
| | | tAppUser.setPhone(addAppUserVo.getPhone()); |
| | | tAppUser.setPassword(Md5Util.MD5Encode(addAppUserVo.getPassword(), null)); |
| | | tAppUser.setPassword(addAppUserVo.getPassword()); |
| | | tAppUser.setIsVip(0); |
| | | tAppUser.setState(1); |
| | | tAppUser.setInsertTime(new Date()); |
| | |
| | | return ResultUtil.error("请先注册", ""); |
| | | } |
| | | if(tAppUser.getState() == 2){ |
| | | return ResultUtil.error("您的账号已被冻结", ""); |
| | | return ResultUtil.errorCode("您的账号已被冻结", ""); |
| | | } |
| | | password = Md5Util.MD5Encode(password, null); |
| | | // password = Md5Util.MD5Encode(password, null); |
| | | if(!tAppUser.getPassword().equals(password)){ |
| | | return ResultUtil.error("账号密码错误", ""); |
| | | } |
| | |
| | | @Override |
| | | public ResultUtil loginWechat(LoginWeChatVo loginWechatVo) throws Exception { |
| | | TAppUser tAppUser = this.baseMapper.selectOne(new QueryWrapper<TAppUser>().eq("openid", loginWechatVo.getOpenId()).ne("state", 3)); |
| | | |
| | | if(null == tAppUser){ |
| | | tAppUser = this.baseMapper.selectOne(new QueryWrapper<TAppUser>().eq("phone", loginWechatVo.getPhone()).ne("state", 3)); |
| | | if(null == tAppUser){ |
| | |
| | | tAppUser.setPhone(loginWechatVo.getPhone()); |
| | | tAppUser.setPassword(Md5Util.MD5Encode("111111", null)); |
| | | tAppUser.setIsVip(0); |
| | | tAppUser.setName(loginWechatVo.getNickname()); |
| | | tAppUser.setHeadImg(loginWechatVo.getHeadimgurl()); |
| | | tAppUser.setGender(loginWechatVo.getSex()); |
| | | tAppUser.setState(1); |
| | | tAppUser.setInsertTime(new Date()); |
| | | this.baseMapper.insert(tAppUser); |
| | |
| | | this.updateById(tAppUser); |
| | | |
| | | String token = getToken(tAppUser); |
| | | return ResultUtil.success(token); |
| | | |
| | | HashMap<String, String> map = new HashMap<>(); |
| | | map.put("token",token); |
| | | if(ToolUtil.isEmpty(tAppUser.getPhone())){ |
| | | map.put("isBind","0"); |
| | | }else { |
| | | map.put("isBind","1"); |
| | | } |
| | | return ResultUtil.success(map); |
| | | } |
| | | |
| | | |
| | |
| | | if(tAppUser.getState() == 2){ |
| | | return ResultUtil.error("您的账号已被冻结", ""); |
| | | } |
| | | tAppUser.setPassword(Md5Util.MD5Encode(password, null)); |
| | | tAppUser.setPassword(password); |
| | | this.updateById(tAppUser); |
| | | return ResultUtil.success(); |
| | | } |
| | |
| | | commodity.setShopIds(mcsClient.queryPointMerStoreIds(vicinityGood.getId())); |
| | | break; |
| | | default: |
| | | |
| | | break; |
| | | } |
| | | goods.add(commodity); |
| | |
| | | } |
| | | commodity.setBelongsType(allCoupon.getUserPopulation()); |
| | | commodity.setGoodsType(4); |
| | | commodity.setShopIds(ucponClient.getCouponStoreIds(allCoupon.getId())); |
| | | commodity.setNums(ucponClient.getRedeemedQuantity(allCoupon.getId())); |
| | | goods.add(commodity); |
| | | } |