Files
smartDriveEE/src/main/java/com/rj/mapper/LbUserMapper.java
2026-05-19 09:31:13 +08:00

23 lines
607 B
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.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.LbUser;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface LbUserMapper extends BaseMapper<LbUser> {
/**
* 按用户 id 批量 upsert同步外部用户数据
*/
int upsertBatch(@Param("list") List<LbUser> list);
/**
* 按 pid 关联同租户上级用户,将其 mobile 写入当前用户的 pmobile。
*/
int fillPmobileByTenantId(@Param("tenantId") String tenantId);
}