TestUseCaseMapper.xml 1.06 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?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>