新增:批量导入商品功能

This commit is contained in:
2025-12-30 17:18:20 +08:00
parent a6cd0c3d52
commit f4e6705f3f
791 changed files with 24581 additions and 13909 deletions

View File

@@ -1,14 +1,14 @@
import type { PageParam } from '@/api';
/**
*
*
*/
export interface ThinkQrcode {
// 主键
id?: string;
// 二维码本身的值,大小不确定。可能为json链接文本
// 二维码本身的值,大小不确定。可能为json链接文本
codeValue?: string;
// 关联的用户id默认用户为uuid 即使为数字 转为字符保存
// 关联的用户id默认用户为uuid 即使为数字 转为字符保存
codeRelUser?: string;
// 关联的用户类型 wechat: 微信用户 ,sys:系统用户other:其他
userType?: string;
@@ -22,7 +22,7 @@ export interface ThinkQrcode {
codeUsabaleNumber?: number;
// 二维码已经使用次数,可以超过可使用次数,不想建立一个记录表,用这个字段进行统计
codeUsNumber?: number;
// 二维码类型 valve:阀门;other:其他 ,后期继续添加
// 二维码类型 valve:阀门;other:其他 ,后期继续添加
codeType?: string;
// 二维码实际转发地址 预留字段 可能该系统不一定用到
codeForward?: string;