feat(X-Pack): [数据填报]增加统计用户待填报任务条数接口

#12318
This commit is contained in:
ulleo
2024-11-21 15:01:00 +08:00
parent d9570036be
commit 3c6853dfef
4 changed files with 21 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
package io.dataease.api.msgCenter;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.web.bind.annotation.PostMapping;
@Tag(name = "消息中心")
public interface MsgCenterApi {
@PostMapping("/count")
long count();
}