Files
smartDriveEE/src/main/java/com/rj/service/ILbUserService.java
2026-05-19 08:35:55 +08:00

40 lines
1.0 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.LbUser;
import java.util.Map;
public interface ILbUserService extends IService<LbUser> {
Map<String, Object> add(LbUser entity);
Map<String, Object> update(LbUser entity);
Map<String, Object> deleteById(Long id);
Map<String, Object> pageQuery(
Integer current,
Integer size,
String tenantId,
Long pid,
String username,
String nickname,
String mobile,
String invite,
Integer status,
Integer isVip,
Integer isResell,
Integer level,
String pname,
String joinTimeStart,
String joinTimeEnd,
String updatedAtStart,
String updatedAtEnd);
/**
* 从 hxrd 后台 user/select 分页拉取全部用户并写入 lb_user每页拉取后立即 upsert
*/
Map<String, Object> syncFromHxrAdmin(String tenantId);
}