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.
 
 
 
 
 
 

29 lines
509 B

import type { PageParam } from '@/api';
/**
* 意见反馈
*/
export interface UserFeedback {
id?: number;
userId?: number;
type?: string;
content?: string;
images?: string;
sortNumber?: number;
comments?: string;
status?: number;
deleted?: number;
tenantId?: number;
createTime?: string;
}
/**
* 用户搜索条件
*/
export interface UserFeedbackParam extends PageParam {
id?: number;
userId?: number;
type?: string;
createTimeStart?: string;
createTimeEnd?: string;
}