Skip to content

Commit

Permalink
去除一个无效的项目
Browse files Browse the repository at this point in the history
  • Loading branch information
chopper711 committed May 17, 2021
1 parent 4cea903 commit ff4de96
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 465 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,22 @@ public void execute() {

}

/**
* 获取促销修改查询条件 修改活动状态
* @param ids
* @return
*/
private UpdateWrapper getUpdatePromotionWrapper(List<String> ids) {
UpdateWrapper updateWrapper = new UpdateWrapper<>();
updateWrapper.in("id", ids);
updateWrapper.set("promotion_status", PromotionStatusEnum.END.name());
return updateWrapper;
}

/**
* 获取商品的促销修改查询条件 修改商品状态
* @param ids
* @return
*/
private UpdateWrapper getUpdatePromotionGoodsWrapper(List<String> ids) {
UpdateWrapper updateWrapper = new UpdateWrapper<>();
updateWrapper.in("promotion_id", ids);
Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
<module>buyer-api</module>
<module>manager-api</module>
<module>seller-api</module>
<module>socket-api</module>
<module>common-api</module>
<module>consumer</module>
</modules>
Expand Down
31 changes: 0 additions & 31 deletions socket-api/pom.xml

This file was deleted.

32 changes: 0 additions & 32 deletions socket-api/src/main/java/cn/lili/SocketApiApplication.java

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit ff4de96

Please sign in to comment.