You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.7 KiB
XML
32 lines
1.7 KiB
XML
2 weeks ago
|
<?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.supervision.ai.service.hub.mapper.ComfyuiTaskParamMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.supervision.ai.service.hub.domain.ComfyuiTaskParam">
|
||
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||
|
<result property="promptId" column="prompt_id" jdbcType="VARCHAR"/>
|
||
|
<result property="taskId" column="task_id" jdbcType="VARCHAR"/>
|
||
|
<result property="paramKey" column="param_key" jdbcType="VARCHAR"/>
|
||
|
<result property="paramPath" column="param_path" jdbcType="VARCHAR"/>
|
||
|
<result property="value" column="value" jdbcType="VARCHAR"/>
|
||
|
<result property="label" column="label" jdbcType="VARCHAR"/>
|
||
|
<result property="required" column="required" jdbcType="BOOLEAN"/>
|
||
|
<result property="paramType" column="param_type" jdbcType="VARCHAR"/>
|
||
|
<result property="componentType" column="component_type" jdbcType="VARCHAR"/>
|
||
|
<result property="createUserId" column="create_user_id" jdbcType="VARCHAR"/>
|
||
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||
|
<result property="updateUserId" column="update_user_id" jdbcType="VARCHAR"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,prompt_id,task_id,
|
||
|
param_key,param_path,value,
|
||
|
label,required,param_type,
|
||
|
component_type,create_user_id,create_time,
|
||
|
update_time,update_user_id
|
||
|
</sql>
|
||
|
</mapper>
|