移动到playedu-api目录

This commit is contained in:
xxx
2024-06-05 16:13:27 +08:00
parent 5b027dfa23
commit e97f0318e6
349 changed files with 209 additions and 209 deletions

View File

@@ -0,0 +1,18 @@
<?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="xyz.playedu.resource.mapper.ResourceVideoMapper">
<resultMap id="BaseResultMap" type="xyz.playedu.resource.domain.ResourceVideo">
<result property="rid" column="rid" jdbcType="INTEGER"/>
<result property="poster" column="poster" jdbcType="VARCHAR"/>
<result property="duration" column="duration" jdbcType="INTEGER"/>
<result property="createdAt" column="created_at" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
rid,poster,duration,
created_at
</sql>
</mapper>