From 487476d14631f63b3575d69e18372dcb554993cf Mon Sep 17 00:00:00 2001 From: sfchu Date: Thu, 27 Mar 2025 17:23:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/common/BreakpointSystem.ets | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entry/src/main/ets/common/BreakpointSystem.ets b/entry/src/main/ets/common/BreakpointSystem.ets index fd82cbe..af587b3 100644 --- a/entry/src/main/ets/common/BreakpointSystem.ets +++ b/entry/src/main/ets/common/BreakpointSystem.ets @@ -14,9 +14,9 @@ */ export class BreakpointType { - sm: T - md: T - lg: T + public sm: T + public md: T + public lg: T constructor(sm: T, md: T, lg: T) { this.sm = sm; -- Gitee