中扬CRM客户关系管理系统
#
luxiaotao1123
2022-09-12 7147fe3d070b119bd0a7fb47ad3de2eb74386c72
#
3个文件已修改
8 ■■■■ 已修改文件
src/main/java/com/zy/crm/manager/mapper/CstmrMapper.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/application.yml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/CstmrMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/crm/manager/mapper/CstmrMapper.java
@@ -12,6 +12,6 @@
    Cstmr selectByUuid(@Param("hostId") Long hostId, @Param("uuid") String uuid);
    Cstmr selectCstmrByNewestUuid(Long hostId);
    Cstmr selectCstmrByNewestUuid(@Param("hostId") Long hostId);
}
src/main/resources/application.yml
@@ -29,8 +29,8 @@
  mapper-locations: classpath:mapper/*.xml
#  global-config:
#    field-strategy: 0
#  configuration:
#    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
logging:
  path: /stock/out/@pom.build.finalName@/logs
src/main/resources/mapper/CstmrMapper.xml
@@ -43,7 +43,7 @@
    </select>
    <select id="selectCstmrByNewestUuid" resultMap="BaseResultMap">
        select * from man_cstmr
        select top 1 * from man_cstmr
        where 1=1
        <if test="hostId != null">
            and host_id = #{hostId}