|
@@ -5,16 +5,31 @@
|
|
|
<!-- 通用查询映射结果 -->
|
|
|
<resultMap id="BaseResultMap" type="com.management.platform.entity.Task">
|
|
|
<id column="id" property="id" />
|
|
|
+ <result column="name" property="name" />
|
|
|
<result column="company_id" property="companyId" />
|
|
|
<result column="owner_id" property="ownerId" />
|
|
|
<result column="contacts_id" property="contactsId" />
|
|
|
+ <result column="executor_id" property="executorId" />
|
|
|
<result column="clue_id" property="clueId" />
|
|
|
<result column="custom_id" property="customId" />
|
|
|
<result column="business_opportunity_id" property="businessOpportunityId" />
|
|
|
<result column="order_id" property="orderId" />
|
|
|
+ <result column="product_id" property="productId" />
|
|
|
<result column="status" property="status" />
|
|
|
<result column="priority" property="priority" />
|
|
|
<result column="repeat" property="repeat" />
|
|
|
+ <result column="repeat_type" property="repeatType" />
|
|
|
+ <result column="repeat_end_never" property="repeatEndNever" />
|
|
|
+ <result column="repeat_end_count" property="repeatEndCount" />
|
|
|
+ <result column="repeat_end_date" property="repeatEndDate" />
|
|
|
+ <result column="repeat_design_day" property="repeatDesignDay" />
|
|
|
+ <result column="task_desc" property="taskDesc" />
|
|
|
+ <result column="creater_id" property="createrId" />
|
|
|
+ <result column="creater_name" property="createrName" />
|
|
|
+ <result column="create_date" property="createDate" />
|
|
|
+ <result column="end_date" property="endDate" />
|
|
|
+ <result column="start_date" property="startDate" />
|
|
|
+ <result column="finish_date" property="finishDate" />
|
|
|
<result column="plate1" property="plate1" />
|
|
|
<result column="plate2" property="plate2" />
|
|
|
<result column="plate3" property="plate3" />
|
|
@@ -24,7 +39,7 @@
|
|
|
|
|
|
<!-- 通用查询结果列 -->
|
|
|
<sql id="Base_Column_List">
|
|
|
- id, company_id, owner_id, contacts_id, clue_id, custom_id, business_opportunity_id, order_id, status, priority, repeat, plate1, plate2, plate3, plate4, plate5
|
|
|
+ id, name, company_id, owner_id, contacts_id, executor_id, clue_id, custom_id, business_opportunity_id, order_id, product_id, status, priority, repeat, repeat_type, repeat_end_never, repeat_end_count, repeat_end_date, repeat_design_day, task_desc, creater_id, creater_name, create_date, end_date, start_date, finish_date, plate1, plate2, plate3, plate4, plate5
|
|
|
</sql>
|
|
|
|
|
|
</mapper>
|