Merge pull request #13467 from ulleo/dev-v2
feat(X-Pack): [数据填报]增加统计用户待填报任务条数接口
This commit is contained in:
commit
c414140ece
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user