优化网站导航模块
This commit is contained in:
33
modules/api/booking_____/bookingIntegral/model/index.ts
Normal file
33
modules/api/booking_____/bookingIntegral/model/index.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 签到积分
|
||||
*/
|
||||
export interface BookingIntegral {
|
||||
//
|
||||
id?: number;
|
||||
// 用户id
|
||||
uid?: number;
|
||||
// 微信昵称
|
||||
username?: string;
|
||||
// 手机号码
|
||||
phone?: string;
|
||||
// 获得积分
|
||||
integral?: string;
|
||||
// 日期
|
||||
dateTime?: string;
|
||||
// 天
|
||||
day?: string;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
// 签到时间
|
||||
createTime?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 签到积分搜索条件
|
||||
*/
|
||||
export interface BookingIntegralParam extends PageParam {
|
||||
id?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user