...
|
...
|
@@ -9,6 +9,8 @@ |
|
|
<result column="platform" property="platform" jdbcType="VARCHAR" />
|
|
|
<result column="project" property="project" jdbcType="VARCHAR" />
|
|
|
|
|
|
<result column="branch" property="branch" jdbcType="VARCHAR" />
|
|
|
|
|
|
<result column="testId" property="testId" jdbcType="VARCHAR" />
|
|
|
<result column="testMessage" property="testMessage" jdbcType="VARCHAR" />
|
|
|
|
...
|
...
|
@@ -22,7 +24,7 @@ |
|
|
</resultMap>
|
|
|
|
|
|
<sql id="Base_Column_List" >
|
|
|
id, title,demand,environment,platform,project,testId,testMessage,develop,test,operator,status,DATE_FORMAT(create_time,'%Y-%m-%d %H:%i:%S') AS createTime,DATE_FORMAT(update_time,'%Y-%m-%d %H:%i:%S') AS updateTime
|
|
|
id, title,demand,environment,platform,project,branch,testId,testMessage,develop,test,operator,status,DATE_FORMAT(create_time,'%Y-%m-%d %H:%i:%S') AS createTime,DATE_FORMAT(update_time,'%Y-%m-%d %H:%i:%S') AS updateTime
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectCount" resultType="java.lang.Integer">
|
...
|
...
|
@@ -87,6 +89,7 @@ |
|
|
environment,
|
|
|
platform,
|
|
|
project,
|
|
|
branch,
|
|
|
testId,
|
|
|
testMessage,
|
|
|
develop,
|
...
|
...
|
@@ -103,6 +106,7 @@ |
|
|
#{environment,jdbcType=VARCHAR},
|
|
|
#{platform,jdbcType=VARCHAR},
|
|
|
#{project,jdbcType=VARCHAR},
|
|
|
#{branch,jdbcType=VARCHAR},
|
|
|
#{testId,jdbcType=VARCHAR},
|
|
|
#{testMessage,jdbcType=VARCHAR},
|
|
|
#{develop,jdbcType=VARCHAR},
|
...
|
...
|
|