using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace GenerateCode_GEBrilliantFactory.Model
|
{
|
public static class SystemCommonVar
|
{
|
|
|
public const string c_Id = "Id";
|
|
public const string c_creator = "CreatedUserName";
|
|
public const string c_createTime = "CreationTime";
|
|
public const string c_lastModifier = "UpdatedUserName";
|
|
public const string c_ModifyTime = "LastModificationTime";
|
|
public const string c_lastModifyTime = "DeletionTime";
|
|
public const string c_delFlag = "IsDeleted";
|
|
public const string c_DeleterId = "DeleterId";
|
|
public const string c_CreateId = "CreatorId";
|
|
public const string c_ModifyId = "LastModifierId";
|
|
public const string c_ExtraProperties = "ExtraProperties";
|
|
public const string c_ConcurrencyStamp = "ConcurrencyStamp";
|
|
|
}
|
}
|