feat: merge market core user id flow

This commit is contained in:
2026-05-11 10:22:45 +08:00
parent 2e049ef718
commit 1de508f2c7
14 changed files with 90 additions and 4 deletions
+7 -2
View File
@@ -16,14 +16,19 @@ describe("batch-payload", () => {
batchName: "618达人筛选第一批",
createdAt: "2026-04-22T12:30:00.000Z",
records: [
{ authorId: "111", authorName: "达人A", status: "success" },
{
authorId: "111",
authorName: "达人A",
coreUserId: "core-111",
status: "success"
},
{ authorId: "222", authorName: "达人B", status: "success" }
]
});
expect(payload).toEqual({
authors: [
{ authorId: "111", authorName: "达人A" },
{ authorId: "111", authorName: "达人A", authorUid: "core-111" },
{ authorId: "222", authorName: "达人B" }
],
batchName: "618达人筛选第一批",