初始化

This commit is contained in:
2025-01-27 23:24:42 +08:00
parent c8a96306c4
commit 6ae8339299
421 changed files with 35687 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
import type { PageParam } from '@/api';
/**
* 续费管理
*/
export interface OaAppRenew {
// 自增ID
appRenewId?: number;
// 应用ID
appId?: number;
// 续费金额
money?: string;
// 备注
comments?: string;
// 开始时间
startTime?: string;
// 到期时间
endTime?: string;
// 企业ID
companyId?: number;
// 用户ID
userId?: number;
// 付款凭证
images?: string;
// 用户姓名
nickname?: string;
// 状态, 0正常, 1待确认
status?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 续费管理搜索条件
*/
export interface OaAppRenewParam extends PageParam {
appRenewId?: number;
keywords?: string;
}