update import file with date column

This commit is contained in:
revisit 2024-09-30 11:59:41 +08:00
parent 03fde8e8d8
commit 0fcac94cbc
112 changed files with 347 additions and 0 deletions

View File

@ -0,0 +1,5 @@
AppDebug=true
AppParamHelper=cn.tsy.idsse.dsds.helper.DSDSParamHelper
AppDatabaseStdout=InActive
AppListener=cn.tsy.idsse.dsds.control.DSDSInitializeLisener
AppName=DSDS2024Server

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.dict.DictDataMapper">
<!-- 分页查询 -->
<select id="dataWithPage" resultType="map">
select * from dict_data where 1=1
<if test="query != null and query != ''">
and (data_name like concat('%',#{query},'%') or data_remark like concat('%',#{query},'%') or data_alias like concat('%',#{query},'%'))
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
</mapper>

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.dict.DictEquipmentMapper">
<!-- 分页查询 -->
<select id="equipmentWithPage" resultType="map">
select * from dict_equipment where 1=1
<if test="query != null and query != ''">
and (equipment_name like concat('%',#{query},'%') or equipment_remark like concat('%',#{query},'%') or equipment_alias like concat('%',#{query},'%'))
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
</mapper>

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.dict.DictPlatformMapper">
<!-- 分页查询 -->
<select id="platformWithPage" resultType="map">
select * from dict_platform where 1=1
<if test="query != null and query != ''">
and (platform_name like concat('%',#{query},'%') or platform_remark like concat('%',#{query},'%') or platform_alias like concat('%',#{query},'%'))
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
</mapper>

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.dict.DictUnitSailMapper">
<!-- 分页查询 -->
<select id="sailWithPage" resultType="map">
select * from dict_unit_sail where 1=1
<if test="query != null and query != ''">
and (unit_name like concat('%',#{query},'%') or link_man like concat('%',#{query},'%'))
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
</mapper>

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.dict.DictUnitShareMapper">
<!-- 分页查询 -->
<select id="shareWithPage" resultType="map">
select * from dict_unit_share where 1=1
<if test="query != null and query != ''">
and (unit_name like concat('%',#{query},'%') or link_man like concat('%',#{query},'%'))
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
</mapper>

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.sample.SampleDatasetMapper">
<!-- 分页查询 -->
<select id="datasetWithPage" resultType="map">
select file_total,d.* from sample_dataset d
left join (
select dataset_id,count(1) file_total from sample_line group by dataset_id
union select dataset_id,count(1) file_total from sample_station group by dataset_id
) l
on d.tsy_id=l.dataset_id where 1=1
<if test="query != null and query != ''">
and (dataset_name like concat('%',#{query},'%') or voyage_name like concat('%',#{query},'%')
or platform_type like concat('%',#{query},'%') or equipment_type like concat('%',#{query},'%')
or platform_name like concat('%',#{query},'%') or dataset_remark like concat('%',#{query},'%'))
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
</mapper>

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace="cn.tsy.data.idsse.dsds.mapper.sample.SampleDatasetTrackMapper">
<select id="totalTrack" resultType="map">
select max(track_time) max_time,min(track_time) min_time,max(track_lon)
max_lon,min(track_lon) min_lin,max(track_lat) max_lat,min(track_lat)
min_lat from sample_dataset_track where dataset_id=#{dataset_id};
</select>
<select id="listTrack" resultType="map">
SELECT
t1.*
FROM
sample_dataset_track t1,(
SELECT
min( tsy_id ) tsy_id
FROM
(
SELECT
track_time,
DATE_FORMAT( track_time, '%Y-%m-%d %H:%i' ) track_minute,
tsy_id
FROM
sample_dataset_track k
WHERE
dataset_id = #{dataset_id}
AND MOD ( MINUTE ( track_time ), ${ticket_minutes} )= 0
) s
GROUP BY
track_minute
) t2
WHERE
t1.tsy_id = t2.tsy_id
AND t1.dataset_id = #{dataset_id}
ORDER BY
t1.track_time
</select>
</mapper>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.sample.SampleLineTrackMapper">
<select id="totalTrack" resultType="map">
select max(track_time) max_time,min(track_time) min_time,max(track_lon) max_lon,min(track_lon) min_lin,max(track_lat) max_lat,
min(track_lat) min_lat from sample_line_track where line_id=#{line_id};
</select>
</mapper>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.sample.SampleRegMapper">
<!-- 分页查询 -->
<select id="sampleWithPage" resultType="map">
select * from sample_reg where 1=1
<if test="query != null and query != ''">
and (sample_name like concat('%',#{query},'%') or voyage_name like concat('%',#{query},'%')
or platform_name like concat('%',#{query},'%') or sample_remark like concat('%',#{query},'%'))
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
</mapper>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.sar.SarRegMapper">
<!-- 分页查询 -->
<select id="sarWithPage" resultType="map">
select * from sar_reg where 1=1
<if test="query != null and query != ''">
and (sar_name like concat('%',#{query},'%') or link_man like concat('%',#{query},'%')
or target_unit like concat('%',#{query},'%') or sar_remark like concat('%',#{query},'%'))
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
</mapper>

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.voyage.VoyageMemberMapper">
<!-- 分页查询 -->
<select id="memberWithPage" resultType="map">
select * from voyage_member where 1=1
<if test="voyage_id != null">
and voyage_id = #{voyage_id}
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
</mapper>

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.voyage.VoyageNavigationMapper">
<!-- 分页查询 -->
<select id="navigationWithPage" resultType="map">
select * from voyage_navigation where 1=1
<if test="voyage_id != null">
and voyage_id = #{voyage_id}
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
<select id="totalNavigation" resultType="map">
select max(nav_time) max_time,min(nav_time) min_time,max(nav_lon) max_lon,min(nav_lon) min_lin,max(nav_lat) max_lat,min(nav_lat) min_lat from voyage_navigation where voyage_id=#{voyage_id};
</select>
<select id="listNavigation" resultType="map">
select * from voyage_navigation where VOYAGE_ID=#{voyage_id} and MOD(MINUTE(NAV_TIME),${ticket_minutes})=0 order by nav_time
</select>
</mapper>

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.tsy.data.idsse.dsds.mapper.voyage.VoyageRegMapper">
<!-- 分页查询 -->
<select id="voyageWithPage" resultType="map">
select r.*,member_total from voyage_reg r
left join (select voyage_id,count(1) member_total from voyage_member group by voyage_id) m
on r.tsy_id = m.voyage_id
where 1=1
<if test="query != null and query != ''">
and (voyage_name like concat('%',#{query},'%') or voyage_officer like concat('%',#{query},'%')
or voyage_officer like concat('%',#{query},'%') or voyage_remark like concat('%',#{query},'%'))
</if>
<if test="order != null and order != ''">
ORDER BY ${order}
</if>
<if test="type != null and (type == 'DESC')">
DESC
</if>
</select>
<select id="totalVoyage" resultType="map">
SELECT count(1) voyage_total,sum(DATEDIFF(voyage_end_date, VOYAGE_START_DATE)) day_total,sum(voyage_mileage) mileage_total from voyage_reg where 1=1
<if test="start_date != null ">
and voyage_start_date &gt;= #{start_date}
</if>
<if test="end_date != null ">
and voyage_end_date &lt;= #{end_date}
</if>
</select>
</mapper>

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More