From bffafcec1f2b216facb321ed941fc79c2740de18 Mon Sep 17 00:00:00 2001 From: hjhan Date: Tue, 30 Dec 2025 11:24:01 +0800 Subject: [PATCH] =?UTF-8?q?refactor(dbmodels):=20=E7=A7=BB=E9=99=A4=20Swap?= =?UTF-8?q?Rate=20=E6=A8=A1=E5=9E=8B=E4=B8=AD=E7=9A=84=E7=BA=BF=E4=B8=8B?= =?UTF-8?q?=E8=B4=B9=E7=8E=87=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除了 OffLineRate 属性及其相关特性标记 - 删除了线下费率的数据库列映射 - 移除了数据变更跟踪特性 - 保留了基础费率百分比等其他字段 --- Framework/YLErp.Core/DBModels/SwapRate.cs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Framework/YLErp.Core/DBModels/SwapRate.cs b/Framework/YLErp.Core/DBModels/SwapRate.cs index 452d1a26..3e4ebd0d 100644 --- a/Framework/YLErp.Core/DBModels/SwapRate.cs +++ b/Framework/YLErp.Core/DBModels/SwapRate.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; @@ -58,13 +58,7 @@ namespace YLErp.DBModels [DataChange] public decimal? TempRate { get; set; } - /// - /// 线下费率 - /// - [DisplayName("线下费率")] - [Column("off_line_rate")] - [DataChange] - public decimal? OffLineRate { get; set; } + /// /// 基础费率百分比