package com.fdkankan.manage.service;
import com.fdkankan.manage.entity.RtkAccount;
import com.baomidou.mybatisplus.extension.service.IService;
import com.fdkankan.manage.vo.request.RtkInfoParam;
/**
*
* 服务类
*
*
* @author
* @since 2024-07-22
*/
public interface IRtkAccountService extends IService {
RtkAccount getOneNotUseAccount(String rtkSnCode,String cameraSn);
void updateAccountStatus(Integer id, int status);
void stop(String rtkSnCode);
Object pageList(RtkInfoParam param);
void saveOrEditEntity(RtkAccount param);
void del(RtkAccount param);
RtkAccount getByUserName(String userName);
}