超管统计接口50%

This commit is contained in:
lym
2024-08-16 18:22:28 +08:00
parent c027651b28
commit 939a8e003f
2 changed files with 7 additions and 1 deletions
@@ -6,6 +6,7 @@ import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.time.LocalDate;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
@@ -34,4 +35,9 @@ public class OrganApiImpl implements OrganApi {
return success(organService.orgTotal()); return success(organService.orgTotal());
} }
@Override
public CommonResult<Map<String, Object>> getOrgSeparate(LocalDate[] createTime, Integer unit) {
return null;
}
} }