From 50e5cdbaceee71f000341a434620d10a87b582f5 Mon Sep 17 00:00:00 2001
From: wangzhibo <wangzhibo@shsening.com>
Date: 星期六, 15 八月 2026 17:12:59 +0800
Subject: [PATCH] 修改 用户属性表中userId从number到string
---
src/modules/order/entity/info.ts | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/modules/order/entity/info.ts b/src/modules/order/entity/info.ts
index ee48bb0..968dce4 100644
--- a/src/modules/order/entity/info.ts
+++ b/src/modules/order/entity/info.ts
@@ -10,12 +10,12 @@
export class OrderInfoEntity extends BaseEntity {
@Index()
@Column({ comment: '鐢ㄦ埛ID' })
- userId: number;
+ userId: string;
@Column({ comment: '鏍囬', nullable: true })
title: string;
- @Column({ comment: '鏀粯鏂瑰紡 0-寰呮敮浠� 1-寰俊 2-鏀粯瀹�', default: 0 })
+ @Column({ comment: '鏀粯鏂瑰紡 0-寰呮敮浠� 1-寰俊 2-鏀粯瀹� 3-纰崇Н鍒�', default: 0 })
payType: number;
@Column({ comment: '鏀粯鏃堕棿', type: 'datetime', nullable: true })
--
Gitblit v1.9.1