You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
650 B
36 lines
650 B
1 year ago
|
interface ManageUsers {
|
||
|
id: number;
|
||
|
email: string;
|
||
|
name: string;
|
||
|
avatar: string;
|
||
|
credit1: number;
|
||
|
id_card: string;
|
||
|
create_ip: string;
|
||
|
create_city: string;
|
||
|
is_active: number;
|
||
|
is_lock: number;
|
||
|
is_verify: number;
|
||
|
verify_at: any;
|
||
|
is_set_password: number;
|
||
|
login_at: any;
|
||
|
role_type: number;
|
||
|
openid: string;
|
||
|
phone_number: string;
|
||
|
created_at: string;
|
||
|
updated_at: string;
|
||
|
user_course_records: any;
|
||
|
courses: any;
|
||
|
course_info: any;
|
||
|
}
|
||
|
|
||
|
interface Manage {
|
||
|
id: number;
|
||
|
name: string;
|
||
|
sort: number;
|
||
|
parent_id: number;
|
||
|
parent_chain: string;
|
||
|
company_id: number;
|
||
|
json_learn_info: any;
|
||
|
users: ManageUsers[];
|
||
|
}
|