Merge remote-tracking branch 'origin/master'

This commit is contained in:
LiuY 2022-12-14 10:30:04 +08:00
commit 22e7bd641b
6 changed files with 75 additions and 30 deletions

46
pom.xml
View File

@ -167,8 +167,54 @@
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<!-- 打包时去除第三方依赖 -->
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<layout>ZIP</layout>
<includes>
<include>
<groupId>non-exists</groupId>
<artifactId>non-exists</artifactId>
</include>
</includes>
</configuration>
</plugin>
<!-- 拷贝第三方依赖文件到指定目录 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<!-- target/lib 是依赖jar包的输出目录根据自己喜好配置 -->
<outputDirectory>target/lib</outputDirectory>
<excludeTransitive>false</excludeTransitive>
<stripVersion>false</stripVersion>
<includeScope>runtime</includeScope>
</configuration>
</execution>
</executions>
</plugin>
<!-- 排除静态资源,静态资源自行拷贝 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*.properties</exclude>
<exclude>**/*.xml</exclude>
<exclude>**/*.yml</exclude>
<exclude>static/**</exclude>
<exclude>templates/**</exclude>
<exclude>mybatis/**</exclude>
</excludes>
</configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -43,7 +43,7 @@ public class UserExpandController extends DefaultBaseController {
@ApiResponses({@ApiResponse(code = 400, message = "请求失败", response = ErrorResult.class)}) @ApiResponses({@ApiResponse(code = 400, message = "请求失败", response = ErrorResult.class)})
@PutMapping("update-byuserid/{userId}") @PutMapping("update-byuserid/{userId}")
@CheckRequestBodyAnnotation @CheckRequestBodyAnnotation
public SuccessResult update(@PathVariable("userId") String userId, @RequestBody UserExpandVO userExpandVO) { public SuccessResult update(@PathVariable("userId") String userId, @RequestBody UserExpandVO userExpandVO) throws Exception {
userExpandService.updateByUserId(null, userId, userExpandVO); userExpandService.updateByUserId(null, userId, userExpandVO);
return new SuccessResult(); return new SuccessResult();
} }

View File

@ -44,7 +44,7 @@ public class UserExpandAppController extends DefaultBaseController {
@ApiResponses({@ApiResponse(code = 400, message = "请求失败", response = ErrorResult.class)}) @ApiResponses({@ApiResponse(code = 400, message = "请求失败", response = ErrorResult.class)})
@PutMapping("update-byuserid/{userId}") @PutMapping("update-byuserid/{userId}")
@CheckRequestBodyAnnotation @CheckRequestBodyAnnotation
public SuccessResult updateUserExpand(@RequestHeader("token") String token, @PathVariable("userId") String userId, @RequestBody UserExpandVO userExpandVO) { public SuccessResult updateUserExpand(@RequestHeader("token") String token, @PathVariable("userId") String userId, @RequestBody UserExpandVO userExpandVO) throws Exception {
userExpandService.updateByUserId(token, userId, userExpandVO); userExpandService.updateByUserId(token, userId, userExpandVO);
return new SuccessResult(); return new SuccessResult();
} }

View File

@ -35,7 +35,7 @@ public interface IUserExpandService extends IUserExpandBaseService<UserExpandDTO
* @param userId * @param userId
* @param userExpandVO * @param userExpandVO
*/ */
void updateByUserId(String token, String userId, UserExpandVO userExpandVO); void updateByUserId(String token, String userId, UserExpandVO userExpandVO) throws Exception;
/** /**

View File

@ -53,13 +53,13 @@ public class UserExpandServiceImpl extends DefaultBaseService implements IUserEx
@Override @Override
public UserExpandDTO getByUserId(String userId) { public UserExpandDTO getByUserId(String userId) {
UserDTO userDTO = userService.get(userId); UserDTO userDTO = userService.get(userId);
if(userDTO == null){ if (userDTO == null) {
throw new SearchException("用户不存在"); throw new SearchException("用户不存在");
} }
Map<String,Object> params = super.getHashMap(3); Map<String, Object> params = super.getHashMap(3);
params.put("userId",userId); params.put("userId", userId);
UserExpandDTO userExpandDTO = this.get(params); UserExpandDTO userExpandDTO = this.get(params);
if(userExpandDTO == null){ if (userExpandDTO == null) {
userExpandDTO = new UserExpandDTO(); userExpandDTO = new UserExpandDTO();
} }
userExpandDTO.setUserName(userDTO.getUserName()); userExpandDTO.setUserName(userDTO.getUserName());
@ -69,32 +69,28 @@ public class UserExpandServiceImpl extends DefaultBaseService implements IUserEx
} }
public void updateByUserId(String token, String userId, UserExpandVO userExpandVO){ public void updateByUserId(String token, String userId, UserExpandVO userExpandVO) throws Exception {
Map<String,Object> params = super.getHashMap(1); Map<String, Object> params = super.getHashMap(1);
params.put("userId", userId); params.put("userId", userId);
UserExpandDTO userExpandDTO = this.get(params); UserExpandDTO userExpandDTO = this.get(params);
// 1.保存拓展信息 // 1.保存拓展信息
if(userExpandDTO == null){ if (userExpandDTO == null) {
this.saveReturnId(token, userId, userExpandVO); this.saveReturnId(token, userId, userExpandVO);
}else{ } else {
this.update(token,userExpandDTO.getUserExpandId(),userExpandVO); this.update(token, userExpandDTO.getUserExpandId(), userExpandVO);
}
if (StringUtils.isBlank(token)) {
return;
} }
// 2.更新用户信息 // 2.更新用户信息
UpdateUserVO updateUserVO = new UpdateUserVO(); UpdateUserVO updateUserVO = new UpdateUserVO();
try { updateUserVO.setName(userExpandVO.getName());
updateUserVO.setName(userExpandVO.getName()); updateUserVO.setPhone(userExpandVO.getPhone());
updateUserVO.setPhone(userExpandVO.getPhone()); updateUserVO.setEmail(userExpandVO.getEmail());
updateUserVO.setEmail(userExpandVO.getEmail()); userService.updateInfo(token, updateUserVO);
userService.updateInfo(token,updateUserVO);
} catch (Exception e) {
throw new UpdateException("更新用户信息失败");
}
} }
@Override @Override
public UserExpandDTO getByUsername(String username) { public UserExpandDTO getByUsername(String username) {
return null; return null;
@ -137,11 +133,6 @@ public class UserExpandServiceImpl extends DefaultBaseService implements IUserEx
} }
@Override @Override
public void save(UserExpandVO userExpandVO) { public void save(UserExpandVO userExpandVO) {
saveReturnId(userExpandVO); saveReturnId(userExpandVO);
@ -156,6 +147,7 @@ public class UserExpandServiceImpl extends DefaultBaseService implements IUserEx
public String saveReturnId(UserExpandVO userExpandVO) { public String saveReturnId(UserExpandVO userExpandVO) {
return saveReturnId(null, userExpandVO); return saveReturnId(null, userExpandVO);
} }
@Override @Override
public String saveReturnId(String token, UserExpandVO userExpandVO) { public String saveReturnId(String token, UserExpandVO userExpandVO) {
String userExpandId = UUIDUtil.getUUID(); String userExpandId = UUIDUtil.getUUID();
@ -287,7 +279,6 @@ public class UserExpandServiceImpl extends DefaultBaseService implements IUserEx
} }
@Override @Override
public Integer count(Map<String, Object> params) { public Integer count(Map<String, Object> params) {
Integer count = userExpandDao.count(params); Integer count = userExpandDao.count(params);

View File

@ -175,7 +175,15 @@
AND t1.order_type = '1' AND t1.order_type = '1'
</if> </if>
GROUP BY GROUP BY
t1.ground_booking_id t1.ground_booking_id,
t1.serial,
t1.venues_name,
t1.project_name,
t1.order_type,
t1.gmt_create,
t2.venue_panorama,
t3.price,
t3.booking_item_id
ORDER BY ORDER BY
t1.order_type ASC,t1.gmt_create DESC t1.order_type ASC,t1.gmt_create DESC
</select> </select>