Compare commits

...

2 Commits

Author SHA1 Message Date
ymnets f35d1115c1 测试修正
5 months ago
ymnets 9093dad670 1
5 months ago

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

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

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

Loading…
Cancel
Save