保誠-保戶業務員媒合平台
Mila
2021-12-06 f2fe7c2bacd26cde387d4d3a17ce6161dd189e26
1
2
3
4
5
6
7
8
9
10
11
12
export interface AppointmentLog {
    id              : number,
    createdDate     : Date,
    lastModifiedDate: Date,
    customerId      : number,
    agentNo         : string,
    status          : 'UNFILLED' | 'FILLED',
    score           : number,
    // 需要 agentName
    agentName: string,
    clientName: string,
}