调整
This commit is contained in:
43
src/api/sys/sysSwiper/model/index.ts
Normal file
43
src/api/sys/sysSwiper/model/index.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user