From 1e1d5972967cdfedded6afbff93671589a7af7d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A9=AC=E5=AE=9D=E9=BE=99?= Date: Tue, 28 Jul 2026 18:05:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99=E7=9A=84?= =?UTF-8?q?=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/example/training/domain/User.java | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 backend/src/main/java/com/example/training/domain/User.java diff --git a/backend/src/main/java/com/example/training/domain/User.java b/backend/src/main/java/com/example/training/domain/User.java deleted file mode 100644 index 5fcde29..0000000 --- a/backend/src/main/java/com/example/training/domain/User.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.example.training.domain; - -/** - * 兼容旧包路径的过渡类型,业务代码统一使用 domain.entity.User。 - */ -@Deprecated -public class User extends com.example.training.domain.entity.User { - - public User() { - super(); - } - - public User(String fullName, String email, String role, String status) { - super(fullName, email, role, status); - } -}