package com.rj.service; import com.baomidou.mybatisplus.extension.service.IService; import com.rj.entity.LbDepartmentUser; import java.time.LocalDate; import java.util.Map; public interface ILbDepartmentUserService extends IService { Map add(LbDepartmentUser entity); Map update(LbDepartmentUser entity); Map deleteById(String id); Map pageQuery(Integer current, Integer size, String tenantId, String userId, String parentId, String name, String phone, String industry); Map bindParentUser(String parentUserId, String parentUserName, String childUserId, String childUserName, String tenantId); Map syncFromDailyUserTrade(LocalDate startDate, LocalDate endDate); }