You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.glxp.api.service.dev;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import com.glxp.api.entity.dev.DeviceAssetUserEntity;
|
|
|
|
import com.glxp.api.req.inv.FilterInvUserRequest;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
@Service
|
|
|
|
public interface DeviceAssetUserService extends IService<DeviceAssetUserEntity> {
|
|
|
|
|
|
|
|
List<DeviceAssetUserEntity> filterDeviceUser(FilterInvUserRequest filterInvUserRequest);
|
|
|
|
|
|
|
|
boolean insertDeviceUser(DeviceAssetUserEntity deviceAssetUserEntity);
|
|
|
|
|
|
|
|
boolean deleteById(String id);
|
|
|
|
|
|
|
|
boolean updateDeviceUser(DeviceAssetUserEntity deviceAssetUserEntity);
|
|
|
|
|
|
|
|
|
|
|
|
}
|