Files
2024-10-12 14:06:16 +08:00

58 lines
1.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Tnb.BasicData
{
/// <summary>
/// 工厂基础数据
/// </summary>
public static class FactoryConfigConst
{
/// <summary>
/// 报工是否允许超过工单计划数 是1 否 0
/// </summary>
public const string IS_SURPASS = "is_surpass";
/// <summary>
/// 报工允许超过工单计划数百分比 例填写10就是10%
/// </summary>
public const string IS_SURPASS_PERCENTAGE = "is_surpass_percentage";
/// <summary>
/// 域名
/// </summary>
public const string DOMAIN = "domain";
/// <summary>
/// 空载具出库数量
/// </summary>
public const string EmptyCarryOutNum = "EmptyCarryOutNum";
/// <summary>
/// BIP地址
/// </summary>
public const string BIPURL = "bipUrl";
/// <summary>
/// 白班夜班时间
/// </summary>
public const string DAYNIGHTWORKTIME = "dayNightWorkTime";
/// <summary>
/// 是否立刻调用erp接口
/// </summary>
public const string CALLERP = "callErp";
/// <summary>
/// 换批号数量
/// </summary>
public const string CHANGEBATCHNUM = "changeBatchNum";
/// <summary>
/// 换批号天数
/// </summary>
public const string CHANGEBATCHDAY = "changeBatchDay";
/// <summary>
/// erp全物料更新
/// </summary>
public const string MATERIALALLUPDATE = "materialAllUpDate";
}
}