更正了 `SendOrderReportOutDto` 类中属性名称的拼写错误, 将 `RoldName` 修改为 `RoleName`,以提高代码可读性和准确性。
@@ -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 == "派单组" ? "派单员" : "中心班长";
}