测试修正

master
ymnets 5 months ago
parent 9093dad670
commit f35d1115c1

@ -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