Compare commits

..

No commits in common. 'f35d1115c16993a4b5d8af3fc485eefb5cd2dc25' and '68404c252aeba432c273b3cfed9ac2473b85ef79' have entirely different histories.

@ -31,7 +31,7 @@ public class GenerateAuthToken {
accessEntity.setAuth(auth); accessEntity.setAuth(auth);
TokenEntity tokenEntity = new TokenEntity(); TokenEntity tokenEntity = new TokenEntity();
// 默认超时 8 小时 // 默认超时 8 小时
tokenEntity.setExpires(60 * 60 * 24 * 7); tokenEntity.setExpires(60 * 60 * 8);
String token = JWTUtil.sign(auth.getUserName(), IdGenerator.passwordToHash(auth.getPassword())); String token = JWTUtil.sign(auth.getUserName(), IdGenerator.passwordToHash(auth.getPassword()));
tokenEntity.setId(token); tokenEntity.setId(token);

@ -20,7 +20,7 @@
<!--//存储过程--> <!--//存储过程-->
<select id="getCourseChapterChildList" parameterType="java.util.Map" statementType="CALLABLE" resultMap="CourseChapterMap"> <select id="getCourseChapterChildList" parameterType="java.util.Map" statementType="CALLABLE" resultMap="CourseChapterMap">
{ {
call getCourseChapterChildListZF(#{courseId,jdbcType=INTEGER,mode=IN}) call getCourseChapterChildList(#{courseId,jdbcType=INTEGER,mode=IN})
} }
</select> </select>

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save