Sfoglia il codice sorgente

修复属性名称拼写错误

更正了 `SendOrderReportOutDto` 类中属性名称的拼写错误,
将 `RoldName` 修改为 `RoleName`,以提高代码可读性和准确性。
田爽 4 giorni fa
parent
commit
d2e0b38dff
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/Hotline.Share/Dtos/Order/SendOrderReportOutDto.cs

+ 1 - 1
src/Hotline.Share/Dtos/Order/SendOrderReportOutDto.cs

@@ -31,5 +31,5 @@ public class SendOrderReportOutDto
 
 	public string StepName { get; set; }
 
-    public string RoldName => string.IsNullOrEmpty(StepName) ? "" : StepName == "派单组" ? "派单员" : "中心班长";
+    public string RoleName => string.IsNullOrEmpty(StepName) ? "" : StepName == "派单组" ? "派单员" : "中心班长";
 }