设备信息定时查询

天气预警数据定时查询
This commit is contained in:
Alan-mx 2023-05-12 15:40:28 +08:00
parent b4eb0d6a68
commit a94bad2a78
2 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,61 @@
package com.ruoyi.pill.service;
import java.util.List;
import com.ruoyi.pill.domain.PillFactory;
/**
* 生产厂家信息Service接口
*
* @author my
* @date 2023-04-18
*/
public interface IPillFactoryService
{
/**
* 查询生产厂家信息
*
* @param factoryId 生产厂家信息主键
* @return 生产厂家信息
*/
public PillFactory selectPillFactoryByFactoryId(Long factoryId);
/**
* 查询生产厂家信息列表
*
* @param pillFactory 生产厂家信息
* @return 生产厂家信息集合
*/
public List<PillFactory> selectPillFactoryList(PillFactory pillFactory);
/**
* 新增生产厂家信息
*
* @param pillFactory 生产厂家信息
* @return 结果
*/
public int insertPillFactory(PillFactory pillFactory);
/**
* 修改生产厂家信息
*
* @param pillFactory 生产厂家信息
* @return 结果
*/
public int updatePillFactory(PillFactory pillFactory);
/**
* 批量删除生产厂家信息
*
* @param factoryIds 需要删除的生产厂家信息主键集合
* @return 结果
*/
public int deletePillFactoryByFactoryIds(Long[] factoryIds);
/**
* 删除生产厂家信息信息
*
* @param factoryId 生产厂家信息主键
* @return 结果
*/
public int deletePillFactoryByFactoryId(Long factoryId);
}

View File

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1681813489444" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2750" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M689.664 532.992c-5.632-5.632-13.312-8.704-21.504-8.704H573.44V430.08c0-8.192-3.072-15.872-8.704-21.504s-13.312-8.704-21.504-8.704H450.048c-8.192 0-15.872 3.072-21.504 8.704S419.84 421.376 419.84 430.08v94.208H325.632c-8.192 0-15.872 3.072-21.504 8.704s-8.704 13.312-8.704 21.504v93.184c0 8.192 3.072 15.872 8.704 21.504s13.312 8.704 21.504 8.704H419.84v94.208c0 8.192 3.072 15.872 8.704 21.504s13.312 8.704 21.504 8.704h93.184c8.192 0 15.872-3.072 21.504-8.704s8.704-13.312 8.704-21.504v-94.208h94.208c8.192 0 15.872-3.072 21.504-8.704s8.704-13.312 8.704-21.504v-93.184c0-8.704-2.56-15.872-8.192-21.504z m-20.992 115.2c0 0.512 0 0.512 0 0 0 0.512-0.512 0.512-1.024 0.512h-123.392V773.12H449.024v-124.416H324.608v-94.208-1.024h124.416V430.08v-1.024H544.256v124.416h124.416v94.72z" fill="#444444" p-id="2751"></path><path d="M910.848 311.296c-24.064-24.064-53.76-36.352-87.04-36.352h-125.44V211.968c0-16.896-6.144-31.744-17.92-43.52s-26.624-17.92-43.52-17.92H356.352c-16.896 0-31.744 6.144-43.52 17.92s-17.92 26.624-17.92 43.52v62.976H169.472c-33.792 0-62.976 12.288-87.04 36.352C58.368 335.872 46.08 365.056 46.08 398.848V803.84c0 33.792 12.288 62.976 36.352 87.04 24.064 24.064 53.248 36.352 87.04 36.352h653.824c33.792 0 62.976-12.288 87.04-36.352s36.352-53.248 36.352-87.04V398.848c0.512-33.792-11.776-62.976-35.84-87.552zM333.824 189.44c6.144-6.144 13.824-9.216 22.528-9.216h280.064c9.216 0 16.384 3.072 22.528 9.216 6.144 6.144 9.216 13.824 9.216 22.528v62.976H324.608V211.968c0-9.216 3.072-16.384 9.216-22.528z m584.192 613.888c0 26.112-9.216 47.616-27.648 66.56-18.944 18.944-40.448 27.648-66.56 27.648H169.472c-26.112 0-47.616-9.216-66.56-27.648-18.944-18.944-27.648-40.448-27.648-66.56v-404.48c0-26.112 9.216-47.616 27.648-66.56 18.944-18.944 40.448-27.648 66.56-27.648H824.32c26.112 0 47.616 9.216 66.56 27.648 18.944 18.944 27.648 40.448 27.648 66.56v404.48z" fill="#444444" p-id="2752"></path></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB