99 lines
2.1 KiB
Java
99 lines
2.1 KiB
Java
package com.ruoyi.system.mapper;
|
|
|
|
import java.util.List;
|
|
import com.ruoyi.system.domain.EShareKey;
|
|
|
|
/**
|
|
* 共享钥匙Mapper接口
|
|
*
|
|
* @author 邱贞招
|
|
* @date 2024-07-31
|
|
*/
|
|
public interface EShareKeyMapper
|
|
{
|
|
/**
|
|
* 查询共享钥匙
|
|
*
|
|
* @param keyId 共享钥匙主键
|
|
* @return 共享钥匙
|
|
*/
|
|
public EShareKey selectEShareKeyByKeyId(Long keyId);
|
|
|
|
/**
|
|
* 查询共享钥匙列表
|
|
*
|
|
* @param eShareKey 共享钥匙
|
|
* @return 共享钥匙集合
|
|
*/
|
|
public List<EShareKey> selectEShareKeyList(EShareKey eShareKey);
|
|
|
|
/**
|
|
* 新增共享钥匙
|
|
*
|
|
* @param eShareKey 共享钥匙
|
|
* @return 结果
|
|
*/
|
|
public int insertEShareKey(EShareKey eShareKey);
|
|
|
|
/**
|
|
* 修改共享钥匙
|
|
*
|
|
* @param eShareKey 共享钥匙
|
|
* @return 结果
|
|
*/
|
|
public int updateEShareKey(EShareKey eShareKey);
|
|
|
|
/**
|
|
* 删除共享钥匙
|
|
*
|
|
* @param keyId 共享钥匙主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteEShareKeyByKeyId(Long keyId);
|
|
|
|
/**
|
|
* 批量删除共享钥匙
|
|
*
|
|
* @param keyIds 需要删除的数据主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteEShareKeyByKeyIds(Long[] keyIds);
|
|
|
|
|
|
/**
|
|
* 根据归属用户id查询共享钥匙列表
|
|
*
|
|
* @param ownerId 归属用户id
|
|
* @return 共享钥匙集合
|
|
*/
|
|
List<EShareKey> selectEShareKeyListByOwnerId(Long ownerId);
|
|
|
|
|
|
/**
|
|
* 根据归属用户id查询共享钥匙列表(已过期)
|
|
*
|
|
* @param ownerId 归属用户id
|
|
* @return 共享钥匙集合
|
|
*/
|
|
List<EShareKey> selectExpiredEShareKeyListByOwnerId(Long ownerId);
|
|
|
|
|
|
/**
|
|
* 根据被分享用户id查询共享钥匙列表
|
|
*
|
|
* @param shareUserId 被分享用户id
|
|
* @return 共享钥匙集合
|
|
*/
|
|
List<EShareKey> selectEShareKeyListByShareUserId(Long shareUserId);
|
|
|
|
/**
|
|
* 根据分享用户id查询未过期车辆sn
|
|
*/
|
|
List<String> selectEShareSnListByShareUserId(Long shareUserId);
|
|
|
|
/**
|
|
* 查询已过期但改变状态的共享钥匙列表
|
|
*/
|
|
List<EShareKey> selectExpiredShareKeyList();
|
|
}
|