<?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.ruoyi.mapper.TestUseCaseMapper">
<resultMap id="BaseResultMap" type="com.ruoyi.domain.TestUseCase">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="testScenarioId" column="test_scenario_id" jdbcType="BIGINT"/>
<result property="testTypeId" column="test_type_id" jdbcType="BIGINT"/>
<result property="usecaseNo" column="usecase_no" jdbcType="VARCHAR"/>
<result property="name" column="name" jdbcType="VARCHAR"/>
<result property="tools" column="tools" jdbcType="VARCHAR"/>
<result property="input" column="input" jdbcType="VARCHAR"/>
<result property="description" column="description" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id,test_scenario_id,test_type_id,
usecase_no,name,tools,
input,description
</sql>
</mapper>
-
王飞 authoredae297232