namespace Admin.NET.Plugin.AiDOP.Infrastructure; /// /// S0 产销(Batch2)可单测的业务规则:与控制器中的赋值保持一致。 /// public static class AdoS0SalesRules { public static string ForbidStatusFromIsEnabled(bool isEnabled) => isEnabled ? "normal" : "forbidden"; /// /// PriorityCode.OrderBy(bit)源值:false=倒序,true=正序;null 按正序展示。 /// public static string PriorityCodeOrderByText(bool? orderBy) => orderBy == false ? "倒序" : "正序"; }