package com.doumee.service.business; 
 | 
  
 | 
import com.doumee.dao.business.dto.TelecomCabinetLogDTO; 
 | 
import com.doumee.dao.business.vo.TelecomJkCabinetLogVO; 
 | 
import com.doumee.service.business.impl.JkCabinetGridServiceImpl; 
 | 
import com.doumee.service.business.third.model.PageData; 
 | 
import com.doumee.service.business.third.model.PageWrap; 
 | 
import com.doumee.dao.business.model.JkCabinetLog; 
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 钥匙柜开关门记录Service定义 
 | 
 * @author 江蹄蹄 
 | 
 * @date 2025/09/28 09:01 
 | 
 */ 
 | 
public interface JkCabinetLogService { 
 | 
  
 | 
    /** 
 | 
     * 创建 
 | 
     *  
 | 
     * @param jkCabinetLog 实体对象 
 | 
     * @return Integer 
 | 
     */ 
 | 
    Integer create(JkCabinetLog jkCabinetLog); 
 | 
  
 | 
    /** 
 | 
     * 主键删除 
 | 
     * 
 | 
     * @param id 主键 
 | 
     */ 
 | 
    void deleteById(Integer id); 
 | 
  
 | 
    /** 
 | 
     * 删除 
 | 
     * 
 | 
     * @param jkCabinetLog 实体对象 
 | 
     */ 
 | 
    void delete(JkCabinetLog jkCabinetLog); 
 | 
  
 | 
    /** 
 | 
     * 批量主键删除 
 | 
     * 
 | 
     * @param ids 主键集 
 | 
     */ 
 | 
    void deleteByIdInBatch(List<Integer> ids); 
 | 
  
 | 
    /** 
 | 
     * 主键更新 
 | 
     * 
 | 
     * @param jkCabinetLog 实体对象 
 | 
     */ 
 | 
    void updateById(JkCabinetLog jkCabinetLog); 
 | 
  
 | 
    /** 
 | 
     * 批量主键更新 
 | 
     * 
 | 
     * @param jkCabinetLogs 实体集 
 | 
     */ 
 | 
    void updateByIdInBatch(List<JkCabinetLog> jkCabinetLogs); 
 | 
  
 | 
    /** 
 | 
     * 主键查询 
 | 
     * 
 | 
     * @param id 主键 
 | 
     * @return JkCabinetLog 
 | 
     */ 
 | 
    JkCabinetLog findById(Integer id); 
 | 
  
 | 
    /** 
 | 
     * 条件查询单条记录 
 | 
     * 
 | 
     * @param jkCabinetLog 实体对象 
 | 
     * @return JkCabinetLog 
 | 
     */ 
 | 
    JkCabinetLog findOne(JkCabinetLog jkCabinetLog); 
 | 
  
 | 
    /** 
 | 
     * 条件查询 
 | 
     * 
 | 
     * @param jkCabinetLog 实体对象 
 | 
     * @return List<JkCabinetLog> 
 | 
     */ 
 | 
    List<JkCabinetLog> findList(JkCabinetLog jkCabinetLog); 
 | 
   
 | 
    /** 
 | 
     * 分页查询 
 | 
     * 
 | 
     * @param pageWrap 分页对象 
 | 
     * @return PageData<JkCabinetLog> 
 | 
     */ 
 | 
    PageData<JkCabinetLog> findPage(PageWrap<JkCabinetLog> pageWrap); 
 | 
  
 | 
    /** 
 | 
     * 条件统计 
 | 
     * 
 | 
     * @param jkCabinetLog 实体对象 
 | 
     * @return long 
 | 
     */ 
 | 
    long count(JkCabinetLog jkCabinetLog); 
 | 
  
 | 
    /** 
 | 
     * 电信 钥匙出入日志查询 
 | 
     * @param model 
 | 
     * @return 
 | 
     */ 
 | 
    List<TelecomJkCabinetLogVO> getLogListForTelecom(TelecomCabinetLogDTO model); 
 | 
  
 | 
  
 | 
    void timeOutUnBackAlarm(JkCabinetGridServiceImpl impl); 
 | 
  
 | 
} 
 |