修改工作流主方法,修改证书申请

This commit is contained in:
v-me-50
2025-06-20 12:02:58 +08:00
parent eb6172436c
commit 6a2d3f98cd
6 changed files with 56 additions and 3 deletions

View File

@@ -125,3 +125,13 @@ func GetAccountList(c *gin.Context) {
}
public.SuccessData(c, accounts, total)
}
func GetCaList(c *gin.Context) {
cas, total, err := apply.GetCaList()
if err != nil {
public.FailMsg(c, err.Error())
return
}
public.SuccessData(c, cas, total)
}