|
|
@ -9,6 +9,9 @@ |
|
|
|
<result column="tBeginTime" property="beginTime" /> |
|
|
|
<result column="tEndTime" property="endTime" /> |
|
|
|
<result column="tDelay" property="delay" /> |
|
|
|
<result column="webPath" property="webPath" /> |
|
|
|
<result column="routineLocation" property="routineLocation" /> |
|
|
|
<result column="importParam" property="importParam" /> |
|
|
|
</resultMap> |
|
|
|
|
|
|
|
<resultMap id="secondTask" type="com.ccsens.tall.bean.vo.TaskVo$NormalTask"> |
|
|
@ -28,6 +31,9 @@ |
|
|
|
<result column="tVirtual" property="virtual" /> |
|
|
|
<result column="tDelay" property="delay" /> |
|
|
|
<result column="tHasGroup" property="hasGroup" /> |
|
|
|
<result column="webPath" property="webPath" /> |
|
|
|
<result column="routineLocation" property="routineLocation" /> |
|
|
|
<result column="importParam" property="importParam" /> |
|
|
|
<collection property="plugins" ofType="com.ccsens.tall.bean.vo.TaskVo$PluginVo"> |
|
|
|
<id column="pId" property="id"/> |
|
|
|
<result column="pName" property="name"/> |
|
|
@ -64,6 +70,9 @@ |
|
|
|
d.virtual as tVirtual, |
|
|
|
d.delay as tDelay, |
|
|
|
d.has_group as tHasGroup, |
|
|
|
c.web_path as webPath, |
|
|
|
c.routine_location as routineLocation, |
|
|
|
c.import_param as importParam, |
|
|
|
GROUP_CONCAT(p.id) as pId, |
|
|
|
GROUP_CONCAT(sp.name) as pName, |
|
|
|
GROUP_CONCAT(sp.description) as pDescription |
|
|
@ -77,6 +86,7 @@ |
|
|
|
p.id IS NULL |
|
|
|
) |
|
|
|
LEFT JOIN t_sys_plugin sp ON sp.id = p.plugin_id |
|
|
|
left join t_pro_plugin_config c on d.id = c.task_id |
|
|
|
WHERE |
|
|
|
d.rec_status = 0 |
|
|
|
AND |
|
|
@ -96,6 +106,8 @@ |
|
|
|
d.Level in (2,3) |
|
|
|
AND |
|
|
|
d.has_group = 0 |
|
|
|
AND |
|
|
|
(c.place_location = 0 or c.id is null) |
|
|
|
group by s.task_detail_id |
|
|
|
</select> |
|
|
|
|
|
|
@ -119,6 +131,9 @@ |
|
|
|
d.virtual as tVirtual, |
|
|
|
d.delay as tDelay, |
|
|
|
d.has_group as tHasGroup, |
|
|
|
c.web_path as webPath, |
|
|
|
c.routine_location as routineLocation, |
|
|
|
c.import_param as importParam, |
|
|
|
GROUP_CONCAT(p.id) as pId, |
|
|
|
GROUP_CONCAT(sp.name) as pName, |
|
|
|
GROUP_CONCAT(sp.description) as pDescription |
|
|
@ -132,6 +147,7 @@ |
|
|
|
p.id IS NULL |
|
|
|
) |
|
|
|
LEFT JOIN t_sys_plugin sp ON sp.id = p.plugin_id |
|
|
|
left join t_pro_plugin_config c on d.id = c.task_id |
|
|
|
WHERE |
|
|
|
d.rec_status = 0 |
|
|
|
AND |
|
|
@ -146,6 +162,8 @@ |
|
|
|
d.Level in (2,3) |
|
|
|
AND |
|
|
|
d.has_group = 0 |
|
|
|
AND |
|
|
|
(c.place_location = 0 or c.id is null) |
|
|
|
group by s.task_detail_id |
|
|
|
</select> |
|
|
|
|
|
|
|