This commit is contained in:
2025-05-22 10:27:07 +08:00
parent 963b239333
commit 95d43746f6
606 changed files with 19207 additions and 102770 deletions

View File

@@ -0,0 +1,43 @@
import type { PageParam } from '@/api';
/**
* 轮播图
*/
export interface SysSwiper {
//
id?: number;
// 所属页面
type?: string;
// 图片
image?: string;
// 跳转类型
jumpType?: string;
// 跳转主键
jumpPk?: number;
//
color?: string;
//
color1?: string;
// 备注
comments?: string;
// 排序号
sortNumber?: number;
// 用户ID
userId?: number;
// 是否删除, 0否, 1是
deleted?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
// 修改时间
updateTime?: string;
}
/**
* 轮播图搜索条件
*/
export interface SysSwiperParam extends PageParam {
id?: number;
keywords?: string;
}