puzhibing
2024-03-01 234f790affac30ed7dfff3feedcc5d77ae36c742
11.27,9
2个文件已修改
4 ■■■ 已修改文件
cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
cloud-server-communityWorldCup/src/main/resources/mapper/WorldCupMapper.xml 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java
@@ -184,7 +184,7 @@
            @ApiImplicitParam(name = "code", value = "扫码结果", required = true, dataType = "String"),
            @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....")
    })
    public ResultUtil<Map<String, String>> getDeviceInformation(String code){
    public ResultUtil<Map<String, String>> getDeviceInformation(@RequestBody String code){
        /**
         * {
         *     "scan_type": 0, // 扫码类型:1000:游戏,1001:课程,1002:场地
cloud-server-communityWorldCup/src/main/resources/mapper/WorldCupMapper.xml
@@ -4,7 +4,6 @@
    <select id="getWorldCupListCoach" resultType="com.dsh.communityWorldCup.model.WorldCupListCoachVo">
        select * from (
        select
        id,
        name,
@@ -21,7 +20,6 @@
        <if test="null != item.storeId">
            and id in (select worldCupId from t_world_cup_store where storeId = #{item.storeId})
        </if>
        ) as aa order by aa.sort
    </select>