20 lines
413 B
C#
20 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Modules.ClientModule.Constant
|
|
{
|
|
/// <summary>
|
|
/// 客户元数据Key
|
|
/// </summary>
|
|
public class ClientMetaKey
|
|
{
|
|
/// <summary>
|
|
/// 审批前状态
|
|
/// </summary>
|
|
public const string AuditPreStatus = "AuditPreStatus";
|
|
}
|
|
}
|