已完成用户APP首期功能开发

交付用户端首期页面、配套接口、后台资源及测试文档。用户APP构建、静态分析和三个管理后台构建通过;完整测试仍有2项失败,后端模型注释检查未通过,详见交付记录。
This commit is contained in:
czl231
2026-09-13 00:57:32 +08:00
parent a0a4bb1218
commit 3ef33b531d
793 changed files with 40959 additions and 1204 deletions

View File

@@ -142,6 +142,15 @@ func TestPlatformProductCommerceAndDeliveryRoutesFollowTheirContracts(t *testing
assertNoRouteMethods(t, routes, path, http.MethodPost, http.MethodPut, http.MethodPatch, http.MethodDelete)
assertNoRouteMethods(t, routes, path+"/:identity", http.MethodPost, http.MethodPut, http.MethodPatch, http.MethodDelete)
}
for _, resource := range []string{"/deposit_record", "/deposit_return_request"} {
path := "/heqi/platform/v1" + resource
assertRouteMethods(t, routes, path, http.MethodGet)
assertRouteMethods(t, routes, path+"/:identity", http.MethodGet)
}
assertRouteMethods(t, routes, "/heqi/platform/v1/deposit_policy", http.MethodGet, http.MethodPost)
assertRouteMethods(t, routes, "/heqi/platform/v1/deposit_return_request/:identity/confirm-pickup", http.MethodPost)
assertRouteMethods(t, routes, "/heqi/platform/v1/deposit_return_request/:identity/inspect", http.MethodPost)
assertRouteMethods(t, routes, "/heqi/platform/v1/deposit_return_request/:identity/complete-refund", http.MethodPost)
for _, resource := range []string{"/gasorder_item", "/gasorder_assign", "/gasorder_status", "/gasorder_track", "/gasorder_track_point", "/gasorder_confirm", "/gasorder_payment", "/gasorder_contract_revision"} {
path := "/heqi/platform/v1" + resource