|
@@ -4,11 +4,11 @@
|
4
|
4
|
<mapper namespace="com.oqpo.api.mapper.system.VerInfoMapper">
|
5
|
5
|
|
6
|
6
|
<select id="selectVerAppGridList" resultType="com.oqpo.api.entity.system.VerInfoEntity">
|
7
|
|
- SELECT /* selectVerAppGridList */
|
|
7
|
+ select /* selectVerAppGridList */
|
8
|
8
|
app_no, devi_tp_cd, fn_code_nm('DEVI_TP_CD', devi_tp_cd) as devi_tp_nm, app_ver, des_ver, date_format(app_ver_dt,'%Y.%m.%d %H:%i:%s') AS app_ver_dt
|
9
|
9
|
, del_yn, date_format(add_dt,'%Y.%m.%d %H:%i:%s') AS add_dt, add_id
|
10
|
|
- FROM np_ver_info
|
11
|
|
- WHERE del_yn = 'N'
|
|
10
|
+ from np_ver_info
|
|
11
|
+ where del_yn = 'N'
|
12
|
12
|
<choose>
|
13
|
13
|
<when test="gridRequest.sidx != null and gridRequest.sidx != ''">
|
14
|
14
|
<if test="gridRequest.sidx == 'job_no'.toString()">
|
|
@@ -31,8 +31,8 @@
|
31
|
31
|
|
32
|
32
|
<select id="selectVerAppGridCnt" resultType="int">
|
33
|
33
|
select count(*)
|
34
|
|
- FROM np_ver_info
|
35
|
|
- WHERE del_yn = 'N'
|
|
34
|
+ from np_ver_info
|
|
35
|
+ where del_yn = 'N'
|
36
|
36
|
</select>
|
37
|
37
|
|
38
|
38
|
|
|
@@ -60,7 +60,7 @@
|
60
|
60
|
|
61
|
61
|
<select id="selectVerAppInfo" resultType="com.oqpo.api.entity.system.VerInfoEntity">
|
62
|
62
|
SELECT /* selectVerAppInfo */
|
63
|
|
- app_no, app_ver, des_ver
|
|
63
|
+ app_no, app_ver, des_ver, date_format(app_ver_dt,'%Y.%m.%d %H:%i:%s') AS app_ver_dt
|
64
|
64
|
FROM np_ver_info
|
65
|
65
|
WHERE app_no = #{appNo}
|
66
|
66
|
</select>
|