护嘱类服务指令配置更改路径

This commit is contained in:
曹磊 2025-11-27 17:51:27 +08:00
parent c33c50a8f2
commit 83c5a79ac5
15 changed files with 15 additions and 15 deletions

View File

@ -68,7 +68,7 @@
CONCAT(CURDATE(), ' ',STR_TO_DATE(end_time, '%H:%i')) as endTime, CONCAT(CURDATE(), ' ',STR_TO_DATE(end_time, '%H:%i')) as endTime,
cycle_type_id as cycleTypeId, cycle_type_id as cycleTypeId,
cycle_type as cycleType, cycle_type as cycleType,
cycle_value as cycleValue cycle_value as cycleValue,
preview_file as previewFile, preview_file as previewFile,
net_preview_file as netPreviewFile, net_preview_file as netPreviewFile,
preview_file_small as previewFileSmall, preview_file_small as previewFileSmall,

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.canadddirective.mapper.CanAddDirectiveMapper"> <mapper namespace="com.nu.modules.config.canadddirective.mapper.CanAddDirectiveMapper">
</mapper> </mapper>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.customercaretemp.mapper.NuBizCustomerCareTempInfoMapper"> <mapper namespace="com.nu.modules.config.customercaretemp.mapper.NuBizCustomerCareTempInfoMapper">
<delete id="deletePhysics"> <delete id="deletePhysics">
delete from nu_biz_customer_care_temp_info where pk_id = #{pkId} delete from nu_biz_customer_care_temp_info where pk_id = #{pkId}
</delete> </delete>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.customercaretemp.mapper.NuBizCustomerCareTempMainMapper"> <mapper namespace="com.nu.modules.config.customercaretemp.mapper.NuBizCustomerCareTempMainMapper">
</mapper> </mapper>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.directivemedia.mapper.DirectiveMediaMapper"> <mapper namespace="com.nu.modules.config.directivemedia.mapper.DirectiveMediaMapper">
</mapper> </mapper>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.directivepackage.mapper.DirectivePackageMapper"> <mapper namespace="com.nu.modules.config.directivepackage.mapper.DirectivePackageMapper">
<!-- 定义 resultMap --> <!-- 定义 resultMap -->
<resultMap id="DirectivePackageResultMap" type="com.nu.modules.config.directivepackage.entity.DirectivePackage"> <resultMap id="DirectivePackageResultMap" type="com.nu.modules.config.directivepackage.entity.DirectivePackage">

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.directivetag.body.mapper.DirectiveBodyTagMapper"> <mapper namespace="com.nu.modules.config.directivetag.body.mapper.DirectiveBodyTagMapper">
<select id="selectAll" resultType="com.nu.modules.config.directivetag.body.entity.DirectiveBodyTag"> <select id="selectAll" resultType="com.nu.modules.config.directivetag.body.entity.DirectiveBodyTag">
select distinct b.* from nu_config_body_tag b left join nu_directive_body_tag d on b.id = d.tag_id select distinct b.* from nu_config_body_tag b left join nu_directive_body_tag d on b.id = d.tag_id

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.directivetag.body.mapper.DirectiveBodyTagRelationMapper"> <mapper namespace="com.nu.modules.config.directivetag.body.mapper.DirectiveBodyTagRelationMapper">
<delete id="removeAll"> <delete id="removeAll">
delete from nu_config_body_tag delete from nu_config_body_tag
</delete> </delete>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.directivetag.emotion.mapper.DirectiveEmotionTagMapper"> <mapper namespace="com.nu.modules.config.directivetag.emotion.mapper.DirectiveEmotionTagMapper">
<select id="selectAll" resultType="com.nu.modules.config.directivetag.emotion.entity.DirectiveEmotionTag"> <select id="selectAll" resultType="com.nu.modules.config.directivetag.emotion.entity.DirectiveEmotionTag">
select distinct e.* from nu_config_emotion_tag e left join nu_directive_emotion_tag d on e.id = d.tag_id select distinct e.* from nu_config_emotion_tag e left join nu_directive_emotion_tag d on e.id = d.tag_id
<where> <where>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.directivetag.emotion.mapper.DirectiveEmotionTagRelationMapper"> <mapper namespace="com.nu.modules.config.directivetag.emotion.mapper.DirectiveEmotionTagRelationMapper">
<delete id="removeAll"> <delete id="removeAll">
delete delete
from nu_config_emotion_tag from nu_config_emotion_tag

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.instructiontag.mapper.InstructionTagMapper"> <mapper namespace="com.nu.modules.config.instructiontag.mapper.InstructionTagMapper">
</mapper> </mapper>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.servicecategory.mapper.ConfigServiceCategoryMapper"> <mapper namespace="com.nu.modules.config.servicecategory.mapper.ConfigServiceCategoryMapper">
<delete id="removeAll"> <delete id="removeAll">
delete from nu_config_service_category delete from nu_config_service_category

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.servicedirective.mapper.ConfigServiceDirectiveMapper"> <mapper namespace="com.nu.modules.config.servicedirective.mapper.ConfigServiceDirectiveMapper">
<!-- 自定义结果映射 --> <!-- 自定义结果映射 -->
<resultMap id="ConfigServiceDirectiveResultMap" <resultMap id="ConfigServiceDirectiveResultMap"

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.servicetag.mapper.ServiceTagMapper"> <mapper namespace="com.nu.modules.config.servicetag.mapper.ServiceTagMapper">
<!-- 定义 resultMap --> <!-- 定义 resultMap -->
<resultMap id="ServiceTagResultMap" type="com.nu.modules.config.servicetag.entity.ServiceTag"> <resultMap id="ServiceTagResultMap" type="com.nu.modules.config.servicetag.entity.ServiceTag">

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nu.modules.servicetype.mapper.ConfigServiceTypeMapper"> <mapper namespace="com.nu.modules.config.servicetype.mapper.ConfigServiceTypeMapper">
<delete id="removeAll"> <delete id="removeAll">
delete from nu_config_service_type delete from nu_config_service_type