feat(tags): add endpoint to query all node tags

This commit is contained in:
Chang lue Tsen
2025-09-03 11:57:12 -04:00
parent 42df466104
commit 1f824fd5a9
5 changed files with 78 additions and 0 deletions
+4
View File
@@ -1477,6 +1477,10 @@ type QueryDocumentListResponse struct {
List []Document `json:"list"`
}
type QueryNodeTagResponse struct {
Tags []string `json:"tags"`
}
type QueryOrderDetailRequest struct {
OrderNo string `form:"order_no" validate:"required"`
}