/**
 * Person profile list data
 * 人员档案列表数据
 */
export type PersonProfileListData = {
    /**
     * Id
     * 编号
     */
    id: number;
    /**
     * Title
     * 标题
     */
    title: string;
};
