|
@@ -10,9 +10,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
|
|
|
<select id="getList" parameterType="BizArchiveInputDetail" resultMap="BizArchiveInputDetailResult">
|
|
|
- SELECT t1.*, t2.name as task_type_name, t2.pay_address
|
|
|
+ SELECT t1.*, t2.name as task_type_name, t2.pay_address,t3.dict_label as fictionAddress
|
|
|
FROM biz_archive_input_detail t1
|
|
|
left join biz_task_type t2 on t2.id = t1.task_type_id
|
|
|
+ left join sys_dict_data t3 on t3.dict_code = t1.fiction_address_id
|
|
|
<trim prefix=" WHERE" suffix="" suffixOverrides="AND">
|
|
|
t1.deleted = 0
|
|
|
<if test="companyId != null "> AND t1.company_id = #{companyId}</if>
|