| | |
| | | |
| | | Cstmr selectByUuid(@Param("hostId") Long hostId, @Param("uuid") String uuid); |
| | | |
| | | Cstmr selectCstmrByNewestUuid(Long hostId); |
| | | Cstmr selectCstmrByNewestUuid(@Param("hostId") Long hostId); |
| | | |
| | | } |
| | |
| | | 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 |
| | |
| | | </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} |