调整流量池数据结构

This commit is contained in:
柳清爽
2025-04-12 19:06:00 +08:00
parent 8d96110767
commit 151db81258
8 changed files with 202 additions and 106 deletions

View File

@@ -12,8 +12,10 @@ export interface Customer {
region: string;
tags: string[];
source: string;
projectName: string;
addTime: string | null;
createTime: string | null; // 修改为允许null值
companyName: string;
createTime: string;
mobile: number;
}