websoft-uniapp仓库模板
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.
 
 
 
 
 
 

35 lines
587 B

import type { PageParam } from '@/api';
/**
* 老师管理
*/
export interface Teacher {
// ID
teacherId?: number;
// 老师姓名
teacherName?: string;
// 老师照片
image?: string;
// 老师介绍
content?: string;
// 商户ID
merchantId?: number;
// 备注
comments?: string;
// 状态
status?: number;
// 排序号
sortNumber?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 老师管理搜索条件
*/
export interface TeacherParam extends PageParam {
teacherId?: number;
keywords?: string;
}