Merge pull request #13467 from ulleo/dev-v2

feat(X-Pack): [数据填报]增加统计用户待填报任务条数接口
This commit is contained in:
Junjun 2024-11-21 17:07:31 +08:00 committed by GitHub
commit c414140ece
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,16 @@
package io.dataease.msgCenter;
import io.dataease.api.msgCenter.MsgCenterApi;
import io.dataease.license.config.XpackInteract;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/msg-center")
public class MsgCenterServer implements MsgCenterApi {
@Override
@XpackInteract(value = "msgCenterServer", replace = true)
public long count() {
return 0;
}
}