35 lines
903 B
Java
35 lines
903 B
Java
package com.ruoyi.system.service;
|
|
|
|
import com.ruoyi.common.core.domain.entity.SysIdentifier;
|
|
import com.ruoyi.common.core.domain.entity.SysRadar;
|
|
import com.ruoyi.common.core.domain.entity.SysUser;
|
|
import com.ruoyi.system.domain.SysUserRole;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
*高温标识器 业务层
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public interface ISysIdentifierService
|
|
{
|
|
public List<SysIdentifier> selectIdentifierList(SysIdentifier identifier);
|
|
|
|
int insertIdentifier(SysIdentifier identifier);
|
|
|
|
SysIdentifier selectIdentifierById(Long id);
|
|
|
|
int updateUser(SysIdentifier identifier);
|
|
|
|
List<SysIdentifier> selectNormalIdentifierList(SysIdentifier identifier);
|
|
|
|
int insertNormalIdentifier(SysIdentifier identifier);
|
|
|
|
SysIdentifier selectNormalIdentifierById(Long id);
|
|
|
|
int updateNormalIdentifier(SysIdentifier identifier);
|
|
|
|
SysIdentifier selectIdentifierByTag(String tag);
|
|
}
|