package com.cubetiqs.demo.service;
import com.cubetiqs.demo.domain.UserEntity;
import org.springframework.stereotype.Service;
@Service
public interface UserService extends BaseService<UserEntity, Long> {
}