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.
 
 
 
 
 
 

33 lines
523 B

import type { PageParam } from '@/api';
/**
* 签到积分
*/
export interface Integral {
//
id?: number;
// 用户id
userId?: number;
// 微信昵称
username?: string;
// 手机号码
phone?: string;
// 获得积分
integral?: string;
// 日期
dateTime?: string;
// 天
day?: string;
// 租户id
tenantId?: number;
// 签到时间
createTime?: number;
}
/**
* 签到积分搜索条件
*/
export interface IntegralParam extends PageParam {
id?: number;
keywords?: string;
}