|
|
@@ -0,0 +1,21 @@
|
|
|
+<?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.storlead.knowledge.mapper.AiTrainingMapper">
|
|
|
+
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
+ <resultMap id="BaseResultMap" type="com.storlead.knowledge.entity.AiTrainingEntity"
|
|
|
+ extends="com.storlead.framework.mybatis.mapper.SysBaseFieldMapper.BaseResultMap">
|
|
|
+ <id column="id" property="id"/>
|
|
|
+ <result column="datasets_id" property="datasetsId"/>
|
|
|
+ <result column="name" property="name"/>
|
|
|
+ <result column="description" property="description"/>
|
|
|
+ <result column="status" property="status"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 通用查询结果列 -->
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ id, datasets_id, name, description, status,
|
|
|
+ owner_by, create_by, update_by, create_time, update_time
|
|
|
+ </sql>
|
|
|
+
|
|
|
+</mapper>
|