namespace Admin.NET.Plugin.AiDOP.Infrastructure;
///
/// S0 产销(Batch2)可单测的业务规则:与控制器中的赋值保持一致。
///
public static class AdoS0SalesRules
{
public static string ForbidStatusFromIsEnabled(bool isEnabled) =>
isEnabled ? "normal" : "forbidden";
///
/// PriorityCode.OrderBy 源值:0 为倒序,否则为正序(与源平台列表 SQL 一致)。
///
public static string PriorityCodeOrderByText(int orderByCode) =>
orderByCode == 0 ? "倒序" : "正序";
}