Forráskód Böngészése

安卓demo接口1

limingming 1 éve
szülő
commit
ff040a1c87

+ 82 - 0
rouyi-api/src/main/java/com/info666/infraredRemote/controller/GetDeviceInfoController.java

@@ -0,0 +1,82 @@
+package com.info666.infraredRemote.controller;
+
+import com.alibaba.fastjson2.JSONObject;
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.ruoyi.common.core.domain.R;
+import com.ruoyi.system.domain.BasicLibrary;
+import com.ruoyi.system.domain.ComponentsLibrary;
+import com.ruoyi.system.domain.TemplateLibrary;
+import com.ruoyi.system.domain.vo.GetDeviceInfoVo;
+import com.ruoyi.system.service.BasicLibraryService;
+import com.ruoyi.system.service.ComponentsLibraryService;
+import com.ruoyi.system.service.TemplateLibraryService;
+import io.swagger.annotations.ApiOperation;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * @Author: LiMingMing
+ * @Date: 2023/7/13 15:31
+ **/
+@RestController
+@RequestMapping("/api/v1/getInfo")
+public class GetDeviceInfoController {
+
+    @Autowired
+    private BasicLibraryService basicLibraryService;
+
+    @Autowired
+    private TemplateLibraryService templateLibraryService;
+
+    @Autowired
+    private ComponentsLibraryService componentsLibraryService;
+
+    @ApiOperation("获取遥控设备信息")
+    @PostMapping("/getDeviceInfo")
+    public R<List<GetDeviceInfoVo>> getDeviceInfo() {
+        List<GetDeviceInfoVo> list = new ArrayList<>();
+
+        List<ComponentsLibrary> componentsLibraries = new ArrayList<>();
+
+        List<TemplateLibrary> templaList = templateLibraryService.list(new LambdaQueryWrapper<TemplateLibrary>().eq(TemplateLibrary::getDelFlag, 0));
+        for (TemplateLibrary templateLibrary : templaList) {
+
+            //获取基本数据
+            BasicLibrary basicLibrary = basicLibraryService.getOne(new LambdaQueryWrapper<BasicLibrary>().eq(BasicLibrary::getDelFlag, 0)
+                    .eq(BasicLibrary::getId, templateLibrary.getId()), false);
+//            ArrayList<Integer> integers = new ArrayList<>();
+            //按照引导次数去写入引导码
+//            for (int i = 0; i < basicLibrary.getBootCodeSend(); i++) {
+//                String[] bootCode = basicLibrary.getBootCode().split(",");
+//                for (String s : bootCode) {
+//                    integers.add(Integer.valueOf(s));
+//                }
+//            }
+//            //数据码
+//            String[] dataCode = basicLibrary.getBootCode().split(",");
+//            for (String s : dataCode) {
+//                integers.add(Integer.valueOf(s));
+//            }
+//            //结束码
+//            for (String s : basicLibrary.getOverCode().split(",")) {
+//                integers.add(Integer.valueOf(s));
+//            }
+
+            GetDeviceInfoVo  deviceInfoVo = new GetDeviceInfoVo();
+            deviceInfoVo.setBandValue(basicLibrary.getBandValue());
+            deviceInfoVo.setComponentsString(templateLibrary.getComponents());
+//            deviceInfoVo.setComponentsList(componentsLibraries);
+//            deviceInfoVo.setBootCodeLow(integers.toArray(new Integer[0]));
+            deviceInfoVo.setBasicLibrary(basicLibrary);
+            list.add(deviceInfoVo);
+        }
+        return R.ok(list);
+    }
+}

+ 28 - 0
rouyi-api/src/main/java/com/info666/infraredRemote/controller/ccc.java

@@ -0,0 +1,28 @@
+package com.info666.infraredRemote.controller;
+
+import com.alibaba.fastjson2.JSONObject;
+
+import java.util.HashMap;
+import java.util.Map;
+
+/**
+ * @Author: LiMingMing
+ * @Date: 2023/7/13 20:57
+ * @Description: TODO
+ **/
+public class ccc {
+    public static void main(String[] args) {
+        Map map = new HashMap();
+        map.put("x", 1);
+        map.put("y", 2);
+        map.put("h", 3);
+        map.put("w", 4);
+        JSONObject from = JSONObject.from(map);
+        System.out.println(from);
+        Map<String, Object> userMap = new HashMap<>();
+        for (Map.Entry<String, Object> stringObjectEntry : from.entrySet()) {
+            userMap.put(stringObjectEntry.getKey(),stringObjectEntry.getValue());
+        }
+        System.out.println(userMap.get("x"));
+    }
+}

+ 70 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/BasicLibrary.java

@@ -0,0 +1,70 @@
+package com.ruoyi.system.domain;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+import java.util.Date;
+
+/**
+ * 红外遥控基础库管理对象 t_basic_library
+ * 
+ * @author liming
+ * @date 2023-07-13
+ */
+@Data
+@TableName("t_basic_library")
+public class BasicLibrary  {
+    private static final long serialVersionUID = 1L;
+
+    /** 基本库id */
+    private Long id;
+
+    /** 基本库名 */
+    @Excel(name = "基本库名")
+    private String name;
+
+    /** 波段值  默认38000 */
+    @Excel(name = "波段值  默认38000")
+    private Long bandValue;
+
+    /** 引导码  500,100  校验size=2 */
+    @Excel(name = "引导码  500,100  校验size=2")
+    private String bootCode;
+
+    /** 引导码发送次数 默认1  校验大于0 */
+    @Excel(name = "引导码发送次数 默认1  校验大于0")
+    private Long bootCodeSend;
+
+    /** 数据码 */
+    @Excel(name = "数据码")
+    private String dateCode;
+
+    /** 结束码 */
+    @Excel(name = "结束码")
+    private String overCode;
+
+    /** 状态(0使用中 1未使用) */
+    @Excel(name = "状态", readConverterExp = "0=使用中,1=未使用")
+    private String status;
+
+    /** 删除标志(0代表存在 2代表删除) */
+    private String delFlag;
+
+    /** 创建者 */
+    private String createBy;
+
+    /** 创建时间 */
+    private Date createTime;
+
+    /** 更新者 */
+    private String updateBy;
+
+    /** 更新时间 */
+    private Date updateTime;
+
+}

+ 79 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/ComponentsLibrary.java

@@ -0,0 +1,79 @@
+package com.ruoyi.system.domain;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+import java.util.Date;
+
+/**
+ * 红外遥控组件库对象 t_components_library
+ * 
+ * @author liming
+ * @date 2023-07-13
+ */
+@Data
+@TableName("t_components_library")
+public class ComponentsLibrary {
+    private static final long serialVersionUID = 1L;
+
+    /** 组件id */
+    private Long id;
+
+    /** 组件名称 */
+    @Excel(name = "组件名称")
+    private String name;
+
+    /** 组件样式 */
+    @Excel(name = "组件样式")
+    private String bntStyle;
+
+    /** 组件类型   1开关型  2加减形 */
+    @Excel(name = "组件类型   1开关型  2加减形")
+    private Long typeNum;
+
+    /** 加减型  最大值 */
+    @Excel(name = "加减型  最大值")
+    private Long addSubMax;
+
+    /** 加减型  最小值 */
+    @Excel(name = "加减型  最小值")
+    private Long addSubMin;
+
+    /** 命令参数 */
+    @Excel(name = "命令参数")
+    private String dictateParameter;
+
+    /** 默认值 */
+    @Excel(name = "默认值")
+    private String defValue;
+
+    /** 重复码 */
+    @Excel(name = "重复码")
+    private Long repeatCode;
+
+    /** 状态(0使用中 1未使用) */
+    @Excel(name = "状态", readConverterExp = "0=使用中,1=未使用")
+    private String status;
+
+    /** 删除标志(0代表存在 2代表删除) */
+    private String delFlag;
+
+
+    /** 创建者 */
+    private String createBy;
+
+    /** 创建时间 */
+    private Date createTime;
+
+    /** 更新者 */
+    private String updateBy;
+
+    /** 更新时间 */
+    private Date updateTime;
+
+
+}

+ 35 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/GetDeviceInfoVo.java

@@ -0,0 +1,35 @@
+package com.ruoyi.system.domain.vo;
+
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.system.domain.BasicLibrary;
+import com.ruoyi.system.domain.ComponentsLibrary;
+import lombok.Data;
+
+import java.util.List;
+
+/**
+ * @Author: LiMingMing
+ * @Date: 2023/7/13 17:55
+ **/
+@Data
+public class GetDeviceInfoVo {
+
+    /**波段值*/
+    private Long bandValue;
+
+    /**数据码*/
+//    private Integer[] bootCodeLow;
+
+    private BasicLibrary basicLibrary;
+
+    /**
+     * 按钮参数列表
+     */
+//    private List<ComponentsLibrary> componentsList;
+
+    /**
+     * 按钮参数信息
+     */
+    private String componentsString;
+
+}

+ 63 - 0
ruoyi-system/src/main/java/com/ruoyi/system/mapper/ComponentsLibraryMapper.java

@@ -0,0 +1,63 @@
+package com.ruoyi.system.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.ruoyi.system.domain.ComponentsLibrary;
+import io.lettuce.core.metrics.CommandMetrics;
+
+import java.util.List;
+
+/**
+ * 红外遥控组件库Mapper接口
+ * 
+ * @author liming
+ * @date 2023-07-12
+ */
+public interface ComponentsLibraryMapper extends BaseMapper<ComponentsLibrary> {
+    /**
+     * 查询红外遥控组件库
+     * 
+     * @param id 红外遥控组件库主键
+     * @return 红外遥控组件库
+     */
+    public ComponentsLibrary selectComponentsLibraryById(Long id);
+
+    /**
+     * 查询红外遥控组件库列表
+     * 
+     * @param componentsLibrary 红外遥控组件库
+     * @return 红外遥控组件库集合
+     */
+    public List<ComponentsLibrary> selectComponentsLibraryList(ComponentsLibrary componentsLibrary);
+
+    /**
+     * 新增红外遥控组件库
+     * 
+     * @param componentsLibrary 红外遥控组件库
+     * @return 结果
+     */
+    public int insertComponentsLibrary(ComponentsLibrary componentsLibrary);
+
+    /**
+     * 修改红外遥控组件库
+     * 
+     * @param componentsLibrary 红外遥控组件库
+     * @return 结果
+     */
+    public int updateComponentsLibrary(ComponentsLibrary componentsLibrary);
+
+    /**
+     * 删除红外遥控组件库
+     * 
+     * @param id 红外遥控组件库主键
+     * @return 结果
+     */
+    public int deleteComponentsLibraryById(Long id);
+
+    /**
+     * 批量删除红外遥控组件库
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteComponentsLibraryByIds(Long[] ids);
+}

+ 110 - 0
ruoyi-system/src/main/resources/mapper/system/platform/BasicLibraryMapper.xml

@@ -0,0 +1,110 @@
+<?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.ruoyi.system.mapper.BasicLibraryMapper">
+    
+    <resultMap type="BasicLibrary" id="BasicLibraryResult">
+        <result property="id"    column="id"    />
+        <result property="name"    column="name"    />
+        <result property="bandValue"    column="band_value"    />
+        <result property="bootCode"    column="boot_code"    />
+        <result property="bootCodeSend"    column="boot_code_send"    />
+        <result property="dateCode"    column="date_code"    />
+        <result property="overCode"    column="over_code"    />
+        <result property="status"    column="status"    />
+        <result property="delFlag"    column="del_flag"    />
+        <result property="createBy"    column="create_by"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="updateBy"    column="update_by"    />
+        <result property="updateTime"    column="update_time"    />
+    </resultMap>
+
+    <sql id="selectBasicLibraryVo">
+        select id, name, band_value, boot_code, boot_code_send, date_code, over_code, status, del_flag, create_by, create_time, update_by, update_time from t_basic_library
+    </sql>
+
+    <select id="getList" resultType="com.ruoyi.system.domain.BasicLibrary">
+        select id, name, boot_code_high, boot_code_low, boot_code_send_num, sync_code_interval_high, sync_code_interval_low, data0_high, data0_low, data1_high, data1_low, status, del_flag, create_by, create_time, update_by, update_time from t_basic_library
+    </select>
+
+    <select id="selectBasicLibraryList" parameterType="BasicLibrary" resultMap="BasicLibraryResult">
+        <include refid="selectBasicLibraryVo"/>
+        <where>  
+            <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
+            <if test="bandValue != null "> and band_value = #{bandValue}</if>
+            <if test="bootCode != null  and bootCode != ''"> and boot_code = #{bootCode}</if>
+            <if test="bootCodeSend != null "> and boot_code_send = #{bootCodeSend}</if>
+            <if test="dateCode != null  and dateCode != ''"> and date_code = #{dateCode}</if>
+            <if test="overCode != null  and overCode != ''"> and over_code = #{overCode}</if>
+            <if test="status != null  and status != ''"> and status = #{status}</if>
+        </where>
+    </select>
+    
+    <select id="selectBasicLibraryById" parameterType="Long" resultMap="BasicLibraryResult">
+        <include refid="selectBasicLibraryVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertBasicLibrary" parameterType="BasicLibrary" useGeneratedKeys="true" keyProperty="id">
+        insert into t_basic_library
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="name != null">name,</if>
+            <if test="bandValue != null">band_value,</if>
+            <if test="bootCode != null">boot_code,</if>
+            <if test="bootCodeSend != null">boot_code_send,</if>
+            <if test="dateCode != null">date_code,</if>
+            <if test="overCode != null">over_code,</if>
+            <if test="status != null">status,</if>
+            <if test="delFlag != null">del_flag,</if>
+            <if test="createBy != null">create_by,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="updateBy != null">update_by,</if>
+            <if test="updateTime != null">update_time,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="name != null">#{name},</if>
+            <if test="bandValue != null">#{bandValue},</if>
+            <if test="bootCode != null">#{bootCode},</if>
+            <if test="bootCodeSend != null">#{bootCodeSend},</if>
+            <if test="dateCode != null">#{dateCode},</if>
+            <if test="overCode != null">#{overCode},</if>
+            <if test="status != null">#{status},</if>
+            <if test="delFlag != null">#{delFlag},</if>
+            <if test="createBy != null">#{createBy},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="updateBy != null">#{updateBy},</if>
+            <if test="updateTime != null">#{updateTime},</if>
+         </trim>
+    </insert>
+
+    <update id="updateBasicLibrary" parameterType="BasicLibrary">
+        update t_basic_library
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="name != null">name = #{name},</if>
+            <if test="bandValue != null">band_value = #{bandValue},</if>
+            <if test="bootCode != null">boot_code = #{bootCode},</if>
+            <if test="bootCodeSend != null">boot_code_send = #{bootCodeSend},</if>
+            <if test="dateCode != null">date_code = #{dateCode},</if>
+            <if test="overCode != null">over_code = #{overCode},</if>
+            <if test="status != null">status = #{status},</if>
+            <if test="delFlag != null">del_flag = #{delFlag},</if>
+            <if test="createBy != null">create_by = #{createBy},</if>
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="updateBy != null">update_by = #{updateBy},</if>
+            <if test="updateTime != null">update_time = #{updateTime},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteBasicLibraryById" parameterType="Long">
+        delete from t_basic_library where id = #{id}
+    </delete>
+
+    <delete id="deleteBasicLibraryByIds" parameterType="String">
+        delete from t_basic_library where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>

+ 116 - 0
ruoyi-system/src/main/resources/mapper/system/platform/ComponentsLibraryMapper.xml

@@ -0,0 +1,116 @@
+<?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.ruoyi.system.mapper.ComponentsLibraryMapper">
+    
+    <resultMap type="ComponentsLibrary" id="ComponentsLibraryResult">
+        <result property="id"    column="id"    />
+        <result property="name"    column="name"    />
+        <result property="bntStyle"    column="bnt_style"    />
+        <result property="typeNum"    column="type_num"    />
+        <result property="addSubMax"    column="add_sub_max"    />
+        <result property="addSubMin"    column="add_sub_min"    />
+        <result property="dictateParameter"    column="dictate_parameter"    />
+        <result property="defValue"    column="def_value"    />
+        <result property="repeatCode"    column="repeat_code"    />
+        <result property="status"    column="status"    />
+        <result property="delFlag"    column="del_flag"    />
+        <result property="createBy"    column="create_by"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="updateBy"    column="update_by"    />
+        <result property="updateTime"    column="update_time"    />
+    </resultMap>
+
+    <sql id="selectComponentsLibraryVo">
+        select id, name, bnt_style, type_num, add_sub_max, add_sub_min, dictate_parameter, def_value, repeat_code, status, del_flag, create_by, create_time, update_by, update_time from t_components_library
+    </sql>
+
+    <select id="selectComponentsLibraryList" parameterType="ComponentsLibrary" resultMap="ComponentsLibraryResult">
+        <include refid="selectComponentsLibraryVo"/>
+        <where>  
+            <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
+            <if test="bntStyle != null  and bntStyle != ''"> and bnt_style = #{bntStyle}</if>
+            <if test="typeNum != null "> and type_num = #{typeNum}</if>
+            <if test="addSubMax != null "> and add_sub_max = #{addSubMax}</if>
+            <if test="addSubMin != null "> and add_sub_min = #{addSubMin}</if>
+            <if test="dictateParameter != null  and dictateParameter != ''"> and dictate_parameter = #{dictateParameter}</if>
+            <if test="defValue != null  and defValue != ''"> and def_value = #{defValue}</if>
+            <if test="repeatCode != null "> and repeat_code = #{repeatCode}</if>
+            <if test="status != null  and status != ''"> and status = #{status}</if>
+        </where>
+    </select>
+    
+    <select id="selectComponentsLibraryById" parameterType="Long" resultMap="ComponentsLibraryResult">
+        <include refid="selectComponentsLibraryVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertComponentsLibrary" parameterType="ComponentsLibrary" useGeneratedKeys="true" keyProperty="id">
+        insert into t_components_library
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="name != null">name,</if>
+            <if test="bntStyle != null">bnt_style,</if>
+            <if test="typeNum != null">type_num,</if>
+            <if test="addSubMax != null">add_sub_max,</if>
+            <if test="addSubMin != null">add_sub_min,</if>
+            <if test="dictateParameter != null">dictate_parameter,</if>
+            <if test="defValue != null">def_value,</if>
+            <if test="repeatCode != null">repeat_code,</if>
+            <if test="status != null">status,</if>
+            <if test="delFlag != null">del_flag,</if>
+            <if test="createBy != null">create_by,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="updateBy != null">update_by,</if>
+            <if test="updateTime != null">update_time,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="name != null">#{name},</if>
+            <if test="bntStyle != null">#{bntStyle},</if>
+            <if test="typeNum != null">#{typeNum},</if>
+            <if test="addSubMax != null">#{addSubMax},</if>
+            <if test="addSubMin != null">#{addSubMin},</if>
+            <if test="dictateParameter != null">#{dictateParameter},</if>
+            <if test="defValue != null">#{defValue},</if>
+            <if test="repeatCode != null">#{repeatCode},</if>
+            <if test="status != null">#{status},</if>
+            <if test="delFlag != null">#{delFlag},</if>
+            <if test="createBy != null">#{createBy},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="updateBy != null">#{updateBy},</if>
+            <if test="updateTime != null">#{updateTime},</if>
+         </trim>
+    </insert>
+
+    <update id="updateComponentsLibrary" parameterType="ComponentsLibrary">
+        update t_components_library
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="name != null">name = #{name},</if>
+            <if test="bntStyle != null">bnt_style = #{bntStyle},</if>
+            <if test="typeNum != null">type_num = #{typeNum},</if>
+            <if test="addSubMax != null">add_sub_max = #{addSubMax},</if>
+            <if test="addSubMin != null">add_sub_min = #{addSubMin},</if>
+            <if test="dictateParameter != null">dictate_parameter = #{dictateParameter},</if>
+            <if test="defValue != null">def_value = #{defValue},</if>
+            <if test="repeatCode != null">repeat_code = #{repeatCode},</if>
+            <if test="status != null">status = #{status},</if>
+            <if test="delFlag != null">del_flag = #{delFlag},</if>
+            <if test="createBy != null">create_by = #{createBy},</if>
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="updateBy != null">update_by = #{updateBy},</if>
+            <if test="updateTime != null">update_time = #{updateTime},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteComponentsLibraryById" parameterType="Long">
+        delete from t_components_library where id = #{id}
+    </delete>
+
+    <delete id="deleteComponentsLibraryByIds" parameterType="String">
+        delete from t_components_library where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>