Type alias Logs<ContentDetail>

Logs<ContentDetail>: {
    change: Partial<{
        from: string;
        fromDetail: Record<string, string>;
        to: string;
        toDetail: Record<string, string>;
    }>;
    content: {
        content: string;
        detail: ContentDetail;
        status: Status;
    };
    createdAt: string;
    id: string;
    inNotice: boolean;
    operator: {
        accountUsername?: string;
        appid?: string;
        openid?: string;
        staffId?: string;
        type: "User" | "Staff" | "System" | "AccountUser";
    };
    status?: LogStatus;
    ticketNumber: string;
    type: LogType;
}[]

工单记录

Type Parameters

  • ContentDetail = any

Generated using TypeDoc