添加接口:今日体检进度信息
This commit is contained in:
@@ -55,6 +55,32 @@ export interface OutputTodayExamStatisticsInfo {
|
||||
*/
|
||||
export type TodayExamStatisticsResponse = CommonActionResult<OutputTodayExamStatisticsInfo>;
|
||||
|
||||
/**
|
||||
* 今日体检进度入参
|
||||
*/
|
||||
export interface InputTodayExamProgress {
|
||||
// 空对象,无需参数
|
||||
}
|
||||
|
||||
/**
|
||||
* 今日体检进度出参
|
||||
*/
|
||||
export interface OutputTodayExamProgress {
|
||||
/** 今日预约人数 */
|
||||
today_appointment_count?: number | null;
|
||||
/** 今日已签到人数 */
|
||||
today_signin_count?: number | null;
|
||||
/** 今日体检中人数 */
|
||||
today_in_exam_count?: number | null;
|
||||
/** 今日用餐人数 */
|
||||
today_meal_count?: number | null;
|
||||
}
|
||||
|
||||
/**
|
||||
* 今日体检进度接口返回
|
||||
*/
|
||||
export type TodayExamProgressResponse = CommonActionResult<OutputTodayExamProgress>;
|
||||
|
||||
/**
|
||||
* 营收数据统计入参
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user