feat: 提交课表冲突检查相关功能模块

This commit is contained in:
dengxiaoyue
2026-08-21 14:39:03 +08:00
parent 179b12e3bf
commit f190c29e05
857 changed files with 10838 additions and 5 deletions
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.roomroot.jwgl.mapper.SSOUserAuthSessionMapper">
<resultMap id="BaseResultMap" type="com.roomroot.jwgl.entity.SSOUserAuthSession">
<result column="SessionKey" property="sessionKey" />
<result column="AppKey" property="appKey" />
<result column="LoginID" property="loginID" />
<result column="UserID" property="userID" />
<result column="UserType" property="userType" />
<result column="IpAddress" property="ipAddress" />
<result column="InvalidTime" property="invalidTime" />
<result column="CreateTime" property="createTime" />
</resultMap>
<sql id="Base_Column_List">
SessionKey, AppKey, LoginID, UserID, UserType, IpAddress, InvalidTime, CreateTime
</sql>
</mapper>