rename com.imyeyu.server to com.imyeyu.api
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?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.imyeyu.server.modules.git.mapper.ReleaseMapper">
|
||||
<mapper namespace="com.imyeyu.api.modules.git.mapper.ReleaseMapper">
|
||||
<sql id="table">git_release</sql>
|
||||
<select id="listByRepositoryId" resultMap="listByRepositoryIdResult">
|
||||
SELECT
|
||||
@@ -28,10 +28,10 @@
|
||||
LIMIT
|
||||
#{offset}, #{limit}
|
||||
</select>
|
||||
<resultMap id="listByRepositoryIdResult" type="com.imyeyu.server.modules.git.vo.release.ReleaseView" autoMapping="true">
|
||||
<resultMap id="listByRepositoryIdResult" type="com.imyeyu.api.modules.git.vo.release.ReleaseView" autoMapping="true">
|
||||
<id property="id" column="id" />
|
||||
<!-- 关联附件 -->
|
||||
<collection property="attachmentList" ofType="com.imyeyu.server.modules.common.vo.attachment.AttachmentView">
|
||||
<collection property="attachmentList" ofType="com.imyeyu.api.modules.common.vo.attachment.AttachmentView">
|
||||
<id property="id" column="attachmentId" />
|
||||
<result property="bizType" column="biz_type" />
|
||||
<result property="bizId" column="biz_id" />
|
||||
|
||||
Reference in New Issue
Block a user