Files
template-10490/api/shop/goodsAttr/model/index.ts
2025-01-27 23:24:42 +08:00

30 lines
526 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { PageParam } from '@/api';
/**
* 商品属性表
*/
export interface GoodsAttr {
// 主键
id?: number;
// 商品ID
goodsId?: number;
// 属性名
attrName?: string;
// 属性值
attrValues?: string;
// 活动类型 0=商品1=秒杀2=砍价3=拼团
type?: string;
// 是否删除, 0否, 1是
deleted?: number;
// 租户id
tenantId?: number;
}
/**
* 商品属性表搜索条件
*/
export interface GoodsAttrParam extends PageParam {
id?: number;
keywords?: string;
}