|
@@ -32,6 +32,7 @@
|
|
<result column="start_date" property="startDate" />
|
|
<result column="start_date" property="startDate" />
|
|
<result column="finish_date" property="finishDate" />
|
|
<result column="finish_date" property="finishDate" />
|
|
<result column="is_delete" property="isDelete" />
|
|
<result column="is_delete" property="isDelete" />
|
|
|
|
+ <result column="task_type" property="taskType" />
|
|
<result column="plate1" property="plate1" />
|
|
<result column="plate1" property="plate1" />
|
|
<result column="plate2" property="plate2" />
|
|
<result column="plate2" property="plate2" />
|
|
<result column="plate3" property="plate3" />
|
|
<result column="plate3" property="plate3" />
|
|
@@ -41,7 +42,7 @@
|
|
|
|
|
|
<!-- 通用查询结果列 -->
|
|
<!-- 通用查询结果列 -->
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
- id, task_name, company_id, owner_id, contacts_id, executor_id, clue_id, custom_id, business_opportunity_id, order_id, product_id, status, priority, is_repeat, repeat_type, repeat_end_never, repeat_end_count, repeat_end_date, repeat_design_day, repeat_design_sameday, task_desc, creater_id, creater_name, create_date, end_date, start_date, finish_date, is_delete, plate1, plate2, plate3, plate4, plate5
|
|
|
|
|
|
+ id, task_name, company_id, owner_id, contacts_id, executor_id, clue_id, custom_id, business_opportunity_id, order_id, product_id, status, priority, is_repeat, repeat_type, repeat_end_never, repeat_end_count, repeat_end_date, repeat_design_day, repeat_design_sameday, task_desc, creater_id, creater_name, create_date, end_date, start_date, finish_date, is_delete,task_type, plate1, plate2, plate3, plate4, plate5
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
<resultMap id="TaskVoMap" type="com.management.platform.entity.vo.TasKVo">
|
|
<resultMap id="TaskVoMap" type="com.management.platform.entity.vo.TasKVo">
|
|
@@ -73,6 +74,7 @@
|
|
<result column="start_date" property="startDate" />
|
|
<result column="start_date" property="startDate" />
|
|
<result column="finish_date" property="finishDate" />
|
|
<result column="finish_date" property="finishDate" />
|
|
<result column="is_delete" property="isDelete" />
|
|
<result column="is_delete" property="isDelete" />
|
|
|
|
+ <result column="task_type" property="taskType" />
|
|
<result column="plate1" property="plate1" />
|
|
<result column="plate1" property="plate1" />
|
|
<result column="plate2" property="plate2" />
|
|
<result column="plate2" property="plate2" />
|
|
<result column="plate3" property="plate3" />
|
|
<result column="plate3" property="plate3" />
|
|
@@ -145,11 +147,12 @@
|
|
</if>
|
|
</if>
|
|
|
|
|
|
</where>
|
|
</where>
|
|
|
|
+ order by task.create_date desc
|
|
|
|
|
|
<if test="pageIndex != null and pageSize != null">
|
|
<if test="pageIndex != null and pageSize != null">
|
|
LIMIT #{pageIndex}, #{pageSize}
|
|
LIMIT #{pageIndex}, #{pageSize}
|
|
</if>
|
|
</if>
|
|
- order by task.create_date desc
|
|
|
|
|
|
+
|
|
|
|
|
|
</select>
|
|
</select>
|
|
|
|
|