From 260698e67d72a38a3f32f2131bd23f575d469d2c Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Wed, 20 Sep 2023 12:54:54 +0800 Subject: [PATCH] Optimal naming --- .../Entities/Mapping/SugarMappingAttribute.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Src/Asp.Net/SqlSugar/Entities/Mapping/SugarMappingAttribute.cs b/Src/Asp.Net/SqlSugar/Entities/Mapping/SugarMappingAttribute.cs index 3eed4a11a..d9a9eceeb 100644 --- a/Src/Asp.Net/SqlSugar/Entities/Mapping/SugarMappingAttribute.cs +++ b/Src/Asp.Net/SqlSugar/Entities/Mapping/SugarMappingAttribute.cs @@ -236,21 +236,21 @@ namespace SqlSugar public string MappingBId { get; set; } public NavigateType NavigatType { get; set; } public string WhereSql { get; set; } - public Navigate(NavigateType navigatType,string name) + public Navigate(NavigateType navigatType,string IfSingleMasterTableColumn_IfListChildTableColumn) { - this.Name = name; + this.Name = IfSingleMasterTableColumn_IfListChildTableColumn; this.NavigatType = navigatType; } - public Navigate(NavigateType navigatType, string firstName,string lastName) + public Navigate(NavigateType navigatType, string IfSingleMasterTableColumn_IfListChildTableColumn, string lastName) { - this.Name = firstName; + this.Name = IfSingleMasterTableColumn_IfListChildTableColumn; this.Name2 = lastName; this.NavigatType = navigatType; } - public Navigate(NavigateType navigatType, string firstName, string lastName,string whereSql) + public Navigate(NavigateType navigatType, string IfSingleMasterTableColumn_IfListChildTableColumn, string lastName,string whereSql) { - this.Name = firstName; + this.Name = IfSingleMasterTableColumn_IfListChildTableColumn; this.Name2 = lastName; this.NavigatType = navigatType; this.WhereSql = whereSql;