Files
tnb.server/BasicData/Tnb.BasicData.Entities/Consts/FactoryConfigConst.cs
2023-07-28 09:55:13 +08:00

18 lines
525 B
C#
Raw 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";
}
}