fix: 攀枝花东区-缴费分支代码处理

This commit is contained in:
2025-05-15 23:21:29 +08:00
parent bafd4aa3ab
commit 6bef534d7d
1097 changed files with 12395 additions and 61340 deletions
@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.apply.mapper.AppApplyFormMapper">
</mapper>
@@ -1,27 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.apply.mapper.ApplyFormDataMapper">
<!-- 查询数据表字段 -->
<select id="findApplyFormFiled" resultType="java.lang.String">
SELECT
COLUMN_NAME
FROM
information_schema.COLUMNS
WHERE TABLE_NAME = #{tableName}
</select>
<!-- 没有返回值并且带参数的动态sql -->
<insert id="saveFormData">
${sql}
<selectKey resultType="long" order="AFTER" keyProperty="parameterMap.id">
SELECT LAST_INSERT_ID()
</selectKey>
</insert>
<!-- 查询用户填报数据信息 -->
<select id="findFillUserData" resultType="java.util.Map">
${sql}
</select>
</mapper>
@@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.apply.mapper.CoreApplyFormApprovalProcessMapper">
<!-- 查询表单对应的审核流程 -->
<select id="selectApplyFormApprovalProcess"
resultType="com.yida.data.common.core.entity.applyForm.CoreApprovalProcess">
SELECT
ap.*
FROM
core_apply_form_approval_process p
INNER JOIN core_approval_process ap ON p.approval_process_id = ap.id
WHERE
p.del_flag = 0
AND ap.del_flag = 0
AND p.apply_form_id = #{applyFormId}
ORDER BY
p.sort
</select>
<!-- 查询表单对应的审核流程页面数据 -->
<select id="listFormApprovalProcess"
resultType="com.yida.data.customForm.vo.apply.ApplyFormProcessSelectVO">
SELECT
ap.id as approvalProcessId,
ap.*
FROM
core_apply_form_approval_process p
INNER JOIN core_approval_process ap ON p.approval_process_id = ap.id
WHERE
p.del_flag = 0
AND ap.del_flag = 0
AND p.apply_form_id = #{formId}
ORDER BY
p.sort
</select>
</mapper>
@@ -1,101 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.apply.mapper.CoreApplyFormFillUserMapper">
<!-- 查询用户已经填报的数据 -->
<select id="selectUserFillForm"
resultType="com.yida.data.customForm.vo.apply.MyApplyFormPageVO">
SELECT
f.id,
f.form_title,
f.background_img_url,
f.header_img_url,
fu.user_id,
fu.create_date,
fu.examine_status,
fu.id as fill_user_id,
fu.apply_form_data_id
FROM
core_apply_form_fill_user fu
INNER JOIN core_apply_form f ON fu.apply_form_id = f.id
WHERE
fu.del_flag = 0
AND f.del_flag = 0
AND fu.user_id in
<foreach collection="userIds" open="(" separator="," close=")" item="userId">
#{userId}
</foreach>
AND f.school_id = #{dto.deptId}
order by
fu.create_date desc
</select>
<!-- 职工参与审核的填报用户信息 -->
<select id="findApprovalFormDataFillUserList"
resultType="com.yida.data.common.core.entity.applyForm.CoreApplyFormFillUser">
SELECT DISTINCT
fu.*,
fur.approval_result currentUserStatus
FROM
core_apply_form_fill_user_approval_process_record fur
INNER JOIN core_apply_form_fill_user fu ON fur.fill_user_id = fu.id
WHERE
fu.del_flag = 0
AND fu.school_id = #{dto.schoolId}
AND fur.approval_id = #{dto.userId}
<if test='dto.studentName != null and dto.studentName != ""'>
AND fu.user_name LIKE CONCAT('%',#{dto.studentName},'%')
</if>
AND fu.create_date &gt;= #{dateTime}
</select>
<!-- 查询教师审核的表单分页数据 -->
<select id="selectApprovalUserFillForm"
resultType="com.yida.data.customForm.vo.apply.ApprovalApplyFormPageVO">
SELECT
f.*,
fu.id AS fill_user_id,
fu.user_id,
fu.user_name,
fu.examine_status,
fu.create_date as createDate
FROM
core_apply_form_fill_user fu
LEFT JOIN core_apply_form f ON fu.apply_form_id = f.id
WHERE
fu.del_flag = 0
AND f.del_flag = 0
AND f.school_id = #{dto.schoolId}
AND fu.id in
<foreach collection="dto.fillUserIds" open="(" separator="," close=")" item="id">
#{id}
</foreach>
</select>
<!-- 查询申请表单填报列表数据 -->
<select id="listApplyFormFillPage"
resultType="com.yida.data.customForm.vo.apply.ApplyFormFillSelectPageVO">
SELECT
u.*,
f.form_title
FROM
core_apply_form_fill_user u
LEFT JOIN core_apply_form f ON u.apply_form_id = f.id
WHERE
f.school_id = #{dto.deptId}
AND f.del_flag = 0
AND u.del_flag = 0
<if test='dto.formTitle != null and dto.formTitle != ""'>
AND f.form_title LIKE CONCAT( '%', #{dto.formTitle}, '%' )
</if>
<if test='dto.userName != null and dto.userName != ""'>
AND u.user_name LIKE CONCAT( '%', #{dto.userName}, '%' )
</if>
<if test='dto.examineStatus != null'>
AND u.examine_status = #{dto.examineStatus}
</if>
ORDER BY
u.create_date DESC
</select>
</mapper>
@@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.apply.mapper.CoreApplyFormMapper">
<!-- 查询申请表单列表数据 -->
<select id="listApplyFormPage"
resultType="com.yida.data.customForm.vo.apply.ApplyFormSelectPageVO">
select
*
from core_apply_form
where del_flag = 0
and school_id = #{dto.deptId}
<if test='dto.formTitle != null and dto.formTitle != ""'>
and form_title like concat ('%', #{dto.formTitle}, '%')
</if>
<if test='dto.status !=null'>
and status = #{dto.status}
</if>
order by
create_date desc
</select>
<!-- 返回int类型数据的动态sql -->
<select id="initSqlReturnInt" resultType="int">
${sql}
</select>
<!-- 没有返回值的动态sql -->
<select id="initSqlReturnVoid">
${sql}
</select>
</mapper>
@@ -1,23 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.apply.mapper.CoreApprovalProcessMapper">
<!-- 查询审核流程节点列表数据 -->
<select id="listApprovalProcessPage"
resultType="com.yida.data.customForm.vo.apply.ApprovalProcessSelectPageVO">
select
*
from core_approval_process
where del_flag = 0
and dept_id = #{dto.deptId}
<if test='dto.approvalProcessName != null and dto.approvalProcessName != ""'>
and approval_process_name like concat ('%', #{dto.approvalProcessName}, '%')
</if>
<if test='dto.approvalType !=null'>
and approval_type = #{dto.approvalType}
</if>
order by
create_date desc
</select>
</mapper>
@@ -1,23 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.apply.mapper.CoreOfficialSealMapper">
<!-- 查询学校公章列表数据 -->
<select id="listOfficialSealPage"
resultType="com.yida.data.customForm.vo.apply.OfficialSealSelectPageVO">
select
*
from core_official_seal
where del_flag = 0
and dept_id = #{dto.deptId}
<if test='dto.officialSealTitle != null and dto.officialSealTitle != ""'>
and official_seal_title like concat ('%', #{dto.officialSealTitle}, '%')
</if>
<if test='dto.status !=null'>
and status = #{dto.status}
</if>
order by
create_date desc
</select>
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.atlas.biz.mapper.CoreCustomFormAuthAdminMapper">
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.customForm.mapper.CoreCustomFormAuthMapper">
</mapper>
@@ -1,36 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.customForm.mapper.CoreCustomFormDataMapper">
<update id="truncateTable">
${sql}
</update>
<delete id="removeBySql">
${sql}
</delete>
<select id="findFormFiled" resultType="java.lang.String">
SELECT
COLUMN_NAME
FROM
information_schema. COLUMNS
WHERE
TABLE_SCHEMA = #{dbName}
AND TABLE_NAME = #{tableName}
</select>
<select id="initSqlWithParameterReturnVoid">
${sql}
</select>
<select id="initSqlWithNUllReturnListMap" resultType="java.util.Map">
${sql}
</select>
<select id="initSqlWithNUllReturnInteger" resultType="java.lang.Integer">
${sql}
</select>
<select id="findData" resultType="java.util.Map">
${sql}
</select>
</mapper>
@@ -1,26 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.customForm.mapper.CoreCustomFormGroupMapper">
<resultMap id="baseResultMap" type="com.yida.data.common.core.entity.customform.CoreCustomFormGroup">
<id column="id" property="id" jdbcType="BIGINT"/>
<result column="description" property="description"/>
<result column="groupName" property="description"/>
<result column="createDate" property="description"/>
<result column="createId" property="description"/>
</resultMap>
<select id="findGroupPageList"
resultMap="baseResultMap">
SELECT
*
FROM
core_custom_form_group
WHERE
<if test="groupName != null and groupName !=''">
group_name LIKE CONCAT('%',#{groupName},'%')
</if>
order by create_date desc
</select>
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.atlas.biz.mapper.CoreCustomFormGroupRelationFormMapper">
</mapper>
@@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.customForm.mapper.CoreCustomFormItemChildrenMapper">
</mapper>
@@ -1,29 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.customForm.mapper.CoreCustomFormItemsMapper">
<resultMap id="BaseResultMap" type="com.yida.data.common.core.entity.customform.CoreCustomFormItems">
<id column="id" jdbcType="BIGINT" property="id"/>
<result column="form_id" jdbcType="BIGINT" property="formId"/>
<result column="item_type" jdbcType="VARCHAR" property="itemType"/>
<result column="item_title" jdbcType="VARCHAR" property="itemTitle"/>
<result column="item_sub_title" jdbcType="VARCHAR" property="itemSubTitle"/>
<result column="needed" jdbcType="VARCHAR" property="needed"/>
<result column="onlyed" jdbcType="VARCHAR" property="onlyed"/>
<result column="input_width" jdbcType="INTEGER" property="inputWidth"/>
<result column="input_height" jdbcType="INTEGER" property="inputHeight"/>
<result column="input_min" jdbcType="INTEGER" property="inputMin"/>
<result column="input_max" jdbcType="INTEGER" property="inputMax"/>
<result column="input_placeholder" jdbcType="VARCHAR" property="inputPlaceholder"/>
<result column="input_verify" jdbcType="INTEGER" property="inputVerify"/>
<result column="default_value" jdbcType="VARCHAR" property="defaultValue"/>
<result column="layout" jdbcType="INTEGER" property="layout"/>
<result column="sort" jdbcType="INTEGER" property="sort"/>
<result column="create_date" jdbcType="TIMESTAMP" property="createDate"/>
<result column="update_date" jdbcType="TIMESTAMP" property="updateDate"/>
<result column="create_id" jdbcType="BIGINT" property="createId"/>
<result column="update_id" jdbcType="BIGINT" property="updateId"/>
<result column="del_flag" jdbcType="TINYINT" property="delFlag"/>
</resultMap>
</mapper>
@@ -1,151 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.customForm.mapper.CoreCustomFormMapper">
<resultMap id="BaseResultMap" type="com.yida.data.common.core.entity.customform.CoreCustomForm">
<id column="id" property="id" jdbcType="BIGINT"/>
<result property="delFlag" column="del_flag"/>
<result property="headerImgUrl" column="header_img_url"/>
<result property="backgroundImgUrl" column="background_img_url"/>
<result property="createId" column="create_id" />
<result property="createDate" column="create_date" />
<result property="draft" column="draft" />
<result property="endDate" column="end_date" />
<result property="formRemark" column="form_remark" />
<result property="formTitle" column="form_title" />
<result property="formTypeId" column="form_type_id" />
<result property="groupId" column="group_id" />
<result property="model" column="model" />
<result property="open" column="open" />
<result property="orgId" column="org_id" />
<result property="pageOneQuestion" column="page_one_question" />
<result property="progressBar" column="progress_bar" />
<result property="publishDate" column="publish_date" />
<result property="publishType" column="publish_type" />
<result property="receipt" column="receipt" />
<result property="recever" column="recever" />
<result property="remind" column="remind" />
<result property="remindAdmin" column="remind_admin" />
<result property="remindAdminModel" column="remind_admin_model" />
<result property="remindHour" column="remind_hour" />
<result property="remindUser" column="remind_user" />
<result property="remindUserModel" column="remind_user_model" />
<result property="saveFormType" column="save_form_type" />
<result property="sorted" column="sorted" />
<result property="startDate" column="start_date" />
<result property="status" column="status" />
<result property="stopMaxTime" column="stop_max_time" />
<result property="stopMinTime" column="stop_min_time" />
<result property="submitNum" column="submit_num" />
<result property="tableName" column="table_name" />
<result property="typeName" column="type_name" />
<result property="updateDate" column="update_date" />
<result property="updateId" column="update_id" />
<result property="updateType" column="update_type" />
<collection property="coreCustomFormItemsList" ofType="com.yida.data.common.core.entity.customform.CoreCustomFormItems">
<result column="id" property="id"/>
<result column="form_id" property="formId"/>
<result column="default_value" property="defaultValue"/>
<result column="input_height" property="inputHeight"/>
<result column="file_num" property="fileNum"/>
<result column="input_max" property="inputMax"/>
<result column="input_min" property="inputMin"/>
<result column="input_placeholder" property="inputPlaceholder"/>
<result column="input_width" property="inputWidth"/>
<result column="input_verify" property="inputVerify"/>
<result column="item_filed_name" property="itemFiledName"/>
<result column="item_sub_title" property="itemSubTitle"/>
<result column="item_title" property="itemTitle"/>
<result column="item_type" property="itemType"/>
<result column="layout" property="layout"/>
<result column="sort" property="sort"/>
<result column="needed" property="needed"/>
<result column="onlyed" property="onlyed"/>
<result column="del_flag" property="delFlag"/>
</collection>
<collection property="coreCustomFormTopical" ofType="com.yida.data.common.core.entity.customform.CoreCustomFormTopical">
<result property="id" column="id"/>
<result property="backgroundImgUrl" column="background_img_url"/>
<result property="logoType" column="logo_type"/>
<result property="surfacePlotUrl" column="surface_plot_url"/>
<result property="headerImgUrl" column="header_img_url"/>
<result property="logoUrl" column="logo_url"/>
</collection>
</resultMap>
<select id="findPageList" resultMap="BaseResultMap"
parameterType="com.yida.data.common.core.entity.customform.CoreCustomForm">
select
cf.*,
ct.type_name
from core_custom_form cf
left join core_custom_form_type ct on cf.form_type_id = ct.id
where cf.del_flag = 0
<if test="coreCustomForm.orgId != null">
and cf.org_id = #{coreCustomForm.orgId}
</if>
<if test="coreCustomForm.createId != null">
and cf.create_id = #{coreCustomForm.createId}
</if>
<if test="coreCustomForm.formTypeId != null">
and cf.form_type_id = #{coreCustomForm.formTypeId}
</if>
order by cf.create_date desc
</select>
<select id="initSqlReturnInt" resultType="java.lang.Integer">
${sql}
</select>
<select id="initSqlReturnVoid">
${sql}
</select>
<select id="appFindAdminFormList" resultType="com.yida.data.common.core.entity.customform.CoreCustomForm">
SELECT
a.*
FROM
`core_custom_form` a
LEFT JOIN core_custom_form_relation_admin b ON a.id = b.custom_form_id
WHERE
b.admin_id = #{userId}
<if test="tableName !=null and tableName != ''">
and a.table_name = #{tableName}
</if>
and a.status = 1
and org_id = #{schoolId}
ORDER BY a.`status` asc,a.create_date desc
</select>
<select id="appFindFormList" resultType="com.yida.data.common.core.entity.customform.CoreCustomForm">
SELECT distinct
a.*
<if test="type != 1 ">
,b.fill
</if>
FROM
`core_custom_form` a
LEFT JOIN core_custom_form_relation_user b ON a.id = b.custom_form_id
WHERE
a.status = 1
<if test="userIdList != null and userIdList.size >0">
and b.user_id in
<foreach collection="userIdList" item="item" open="(" close=")" separator=",">
#{item}
</foreach>
</if>
and b.type = #{type}
<if test="tableName !=null and tableName != ''">
and a.form_title like concat ('%',#{tableName},'%')
</if>
and org_id = #{schoolId}
and a.del_flag = 0
ORDER BY a.`status` asc,a.create_date desc
</select>
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.school.index.mapper.CoreCustomFormModelItemChildrenMapper">
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.school.index.mapper.CoreCustomFormModelItemsMapper">
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.school.index.mapper.CoreCustomFormModelMapper">
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.atlas.biz.mapper.CoreCustomFormRelationAdminMapper">
</mapper>
@@ -1,37 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.customForm.mapper.CoreCustomFormRelationUserMapper">
<select id="findUserNum" resultType="java.lang.Integer">
SELECT
COUNT(id)
FROM
`core_custom_form_relation_user`
WHERE
custom_form_id = #{id}
</select>
<select id="findNotCommit" resultType="java.lang.Integer">
SELECT
COUNT(id)
FROM
`core_custom_form_relation_user`
WHERE
custom_form_id = #{id}
and fill = 0
</select>
<select id="findUserList"
resultType="com.yida.data.common.core.entity.customform.CoreCustomFormRelationUser">
SELECT
*
FROM
`core_custom_form_relation_user`
WHERE
fill = #{type}
<if test="name != null and name !=''">
AND user_name LIKE CONCAT( '%', #{name}, '%' )
</if>
AND custom_form_id = #{formId}
</select>
</mapper>
@@ -1,22 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.yida.data.form.customForm.mapper.CoreCustomFormRelationUserParentMapper">
<select id="findTotal" resultType="java.lang.Integer">
SELECT
COUNT(id)
FROM
`core_custom_form_relation_user_parent`
WHERE
custom_form_id = #{formId}
</select>
<select id="findParentStatistic" resultType="java.lang.Integer">
SELECT
COUNT(id)
FROM
`core_custom_form_relation_user_parent`
WHERE
custom_form_id = #{formId}
and fill_type = 0
</select>
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.atlas.biz.mapper.CoreCustomFormStatisticMapper">
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.atlas.biz.mapper.CoreCustomFormTopicalMapper">
</mapper>
@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yida.data.form.customForm.mapper.CoreCustomFormTypeMapper">
</mapper>