123456789101112131415161718192021222324252627282930 |
- 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;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2024-07-22
- */
- public interface IRtkAccountService extends IService<RtkAccount> {
- 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);
- }
|