refactor(dbmodels): 移除 SwapRate 模型中的线下费率字段

- 移除了 OffLineRate 属性及其相关特性标记
- 删除了线下费率的数据库列映射
- 移除了数据变更跟踪特性
- 保留了基础费率百分比等其他字段
This commit is contained in:
hjhan
2025-12-30 11:24:01 +08:00
parent 7336fdaf70
commit bffafcec1f
+2 -8
View File
@@ -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; }
/// <summary>
/// 线下费率
/// </summary>
[DisplayName("线下费率")]
[Column("off_line_rate")]
[DataChange]
public decimal? OffLineRate { get; set; }
/// <summary>
/// 基础费率百分比