@@ -0,0 +1,22 @@
+# Statistic - 系统分析
+
+> url 前缀:**commit**
+>
+> 示例:**https://xxxxxxxxx/api/commit/xxxx**
+## 查看提交信息
+```http
+get /:commitId
+```
+### Response
+```ts
+interface CommitData {
+ err: 0;
+ res: CommitSerializer;
+}
+see [CommitSerializer](../serializer/CommitSerializer.md)
@@ -0,0 +1,36 @@
+# CommitSerializer
+提交信息
+## Attributes
+interface CommitSerializer {
+ id?: number;
+ hash?: string;
+ finished?: boolean;
+ score?: number;
+ createdAt?: LocalDateTime;
+ result?: {
+ exam?: {
+ name?: string;
+ };
+ owner?: {
+ username?: string;
+ records?: Array<{
+ status?: BuildStatus;
+ problem?: {
+ }>;