自动同步部门人员信息

This commit is contained in:
2026-04-29 21:48:06 +08:00
parent 6fc319ac64
commit a8338f3bcf
3 changed files with 143 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ 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<LbDepartmentUser> {
@@ -27,4 +28,6 @@ public interface ILbDepartmentUserService extends IService<LbDepartmentUser> {
String childUserId,
String childUserName,
String tenantId);
Map<String, Object> syncFromDailyUserTrade(LocalDate startDate, LocalDate endDate);
}