#
zhou zhou
3 天以前 c65d967bee45b38f0077cfd8f7971787b7042e98
1
2
3
4
5
6
7
8
9
10
11
12
13
import {
    ShowGuesser,
} from "react-admin";
 
import AiCallLogList from "./AiCallLogList";
import AiCallLogEdit from "./AiCallLogEdit";
 
export default {
    list: AiCallLogList,
    edit: AiCallLogEdit,
    show: ShowGuesser,
    recordRepresentation: (record) => `${record.modelCode || record.id || ''}`
};