IUserPlatformService.java 300 B

12345678910111213141516
  1. package com.fdkankan.jp.xspace.service;
  2. import com.fdkankan.jp.xspace.entity.UserPlatform;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author
  10. * @since 2024-11-19
  11. */
  12. public interface IUserPlatformService extends IService<UserPlatform> {
  13. }