package com.rj.service; import com.baomidou.mybatisplus.extension.service.IService; import com.rj.entity.QweiUser; import java.util.Map; public interface IQweiUserService extends IService { Map add(QweiUser entity); Map update(QweiUser entity); Map deleteById(String id); Map pageQuery(Integer current, Integer size, String userid, String userName, Long mainDepartmentId, Integer status); default Map syncFromQiWei() { return syncFromQiWei(null); } Map syncFromQiWei(String tenantId); default Map syncCustomerFromQiWei() { return syncCustomerFromQiWei(null); } Map syncCustomerFromQiWei(String tenantId); }