Browse Source

1.上传调整 2.获取日报设备支持通过设备编号查询

王苗苗 5 months ago
parent
commit
9c27c156f1

+ 1 - 1
ruoyi-admin/src/main/resources/application.yml

@@ -7,7 +7,7 @@ ruoyi:
   # 版权年份
   copyrightYear: 2024
   # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
-  profile: D:/ruoyi/uploadPath
+  profile: /home/smartrobot/uploadPath
   # 获取ip地址开关
   addressEnabled: false
   # 验证码类型 math 数字计算 char 字符验证

+ 4 - 0
ruoyi-system/src/main/java/com/ruoyi/business/req/DeviceReq.java

@@ -22,4 +22,8 @@ public class DeviceReq {
 
     private String worksId;//水厂ID
 
+    /** 化验设备编号 */
+    @Excel(name = "化验设备编号")
+    private String deviceNo;
+
 }

+ 1 - 0
ruoyi-system/src/main/resources/mapper/business/BizDeviceMapper.xml

@@ -206,6 +206,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         WHERE bd.device_status = '0' AND bzw.del_flag = 0 AND bd.type = #{type}
         <if test="assayStatus != null  and assayStatus != ''"> and bd.assay_status = #{assayStatus}</if>
         <if test="worksId != null  and worksId != ''"> and bzw.works_id = #{worksId}</if>
+        <if test="deviceNo != null  and deviceNo != ''"> and bd.device_no = #{deviceNo}</if>
         order by bd.device_id desc
     </select>
 </mapper>