Commit a9e7295a a9e7295a70057b492c07ffcef4832bb504a2cdb6 by xianghan@topdraw.cn

Merge branch 'release/1.0.2'

2 parents 9db5a924 d9758ce3
./target/
member-service-api.iml
......
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="FacetManager">
<facet type="JRebel" name="JRebel">
<configuration>
<option name="ideModuleStorage">
<map>
<entry key="com.zeroturnaround.jrebel.FormatVersion" value="7.0.0" />
<entry key="jrebelEnabled" value="true" />
<entry key="lastExternalPluginCheckTime" value="1636770952724" />
</map>
</option>
<option name="version" value="5" />
</configuration>
</facet>
</component>
</module>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!--
This is the JRebel configuration file. It maps the running application to your IDE workspace, enabling JRebel reloading for this project.
Refer to https://manuals.jrebel.com/jrebel/standalone/config.html for more information.
-->
<application generated-by="intellij" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_3.xsd">
<id>member-service-api</id>
<classpath>
<dir name="C:/Users/lenovo/Documents/workspace/member-service/member-service-api/target/classes">
</dir>
</classpath>
</application>
/logs/
member-service-impl.iml
/src/main/resources/rebel.xml
\ No newline at end of file
......
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="FacetManager">
<facet type="JRebel" name="JRebel">
<configuration>
<option name="ideModuleStorage">
<map>
<entry key="com.zeroturnaround.jrebel.FormatVersion" value="7.0.0" />
<entry key="jrebelEnabled" value="true" />
<entry key="lastExternalPluginCheckTime" value="1636770952726" />
</map>
</option>
<option name="version" value="5" />
</configuration>
</facet>
</component>
</module>
\ No newline at end of file
......@@ -119,7 +119,7 @@ public class Member implements Serializable {
@Column(name = "update_time")
private Timestamp updateTime;
// 是否在黑名单 1:是;0否
// 是否在黑名单 1:是;0否
@Column(name = "black_status")
private Integer blackStatus;
......
......@@ -82,10 +82,12 @@ public class ExpOperationServiceImpl implements ExpOperationService {
long originExp = this.getExpByMemberId(tempExp);
// 总积分
long totalExp = this.calculateTotalExp(originExp, tempExp);
// 1.添加成长值记录
this.threadPoolTaskExecutor.execute(()->this.doInsertExpDetail(tempExp, originExp, totalExp));
this.threadPoolTaskExecutor.execute(() -> this.doInsertExpDetail(tempExp, originExp, totalExp));
// 2.更新成长值与等级
this.refreshMemberExpAndLevel(tempExp);
} catch (Exception e) {
e.printStackTrace();
throw e;
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
This is the JRebel configuration file. It maps the running application to your IDE workspace, enabling JRebel reloading for this project.
Refer to https://manuals.jrebel.com/jrebel/standalone/config.html for more information.
-->
<application generated-by="intellij" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_3.xsd">
<id>member-service-impl</id>
<classpath>
<dir name="C:/Users/lenovo/Documents/workspace/member-service/member-service-impl/target/classes">
</dir>
</classpath>
</application>