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.
49 lines
944 B
49 lines
944 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 产品标签记录表
|
|
*/
|
|
export interface OaProductTabs {
|
|
// 产品标签ID
|
|
tabId?: number;
|
|
// 产品ID
|
|
productId?: number;
|
|
// 标签名称
|
|
name?: string;
|
|
// 标签类型
|
|
type?: string;
|
|
// 产品标签详情
|
|
content?: string;
|
|
// 背景颜色
|
|
backgroundColor?: string;
|
|
// 背景图片
|
|
backgroundImage?: string;
|
|
// 附件
|
|
files?: string;
|
|
// 企业ID
|
|
companyId?: number;
|
|
// 用户ID
|
|
userId?: number;
|
|
// 排序(数字越小越靠前)
|
|
sortNumber?: number;
|
|
// 备注
|
|
comments?: string;
|
|
// 状态, 0已上架, 1已下架
|
|
status?: number;
|
|
// 是否删除, 0否, 1是
|
|
deleted?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 产品标签记录表搜索条件
|
|
*/
|
|
export interface OaProductTabsParam extends PageParam {
|
|
tabId?: number;
|
|
keywords?: string;
|
|
}
|