29 lines
594 B
Plaintext
29 lines
594 B
Plaintext
package com.sercurityControl.proteam.service;
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
import com.sercurityControl.proteam.domain.DeviceMachineEntity;
|
|
import com.sercurityControl.proteam.dutyTask.domain.TodayTaskVo;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author bonus
|
|
* @data 2023/3/17 10:53
|
|
* @description 设备分配
|
|
*/
|
|
public interface DeviceMachineService {
|
|
|
|
/**
|
|
* 获取设备分配数据
|
|
*
|
|
* @param entity 实体类
|
|
* @return 集合
|
|
*/
|
|
PageInfo<DeviceMachineEntity> getDeviceMachineList(DeviceMachineEntity entity);
|
|
|
|
|
|
|
|
void refreshRedisUtilSchedule();
|
|
|
|
}
|