Files
admin-vben5/apps/web-antd/src/api/property/customerService/activities/model.d.ts

130 lines
1.5 KiB
TypeScript
Raw Normal View History

2025-08-19 14:41:18 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface ActivitiesVO {
/**
*
*/
id: string | number;
/**
*
*/
title: string;
/**
*
*/
headImgUrl: string;
/**
*
*/
startTime: string;
/**
*
*/
endTime: string;
/**
*
*/
activeContent: string;
/**
* 1. 2. 3.
*/
status: string;
/**
*
*/
searchValue: string;
}
export interface ActivitiesForm extends BaseEntity {
/**
*
*/
id?: string | number;
/**
*
*/
title?: string;
/**
*
*/
headImgUrl?: string;
/**
*
*/
startTime?: string;
/**
*
*/
endTime?: string;
/**
*
*/
activeContent?: string;
/**
* 1. 2. 3.
*/
status?: string;
/**
*
*/
searchValue?: string;
}
export interface ActivitiesQuery extends PageQuery {
/**
*
*/
title?: string;
/**
*
*/
headImgUrl?: string;
/**
*
*/
startTime?: string;
/**
*
*/
endTime?: string;
/**
*
*/
activeContent?: string;
/**
* 1. 2. 3.
*/
status?: string;
/**
*
*/
searchValue?: string;
/**
*
*/
params?: any;
}