123456789101112131415161718192021222324 |
- /* ==============================================================================
- * 功能描述:CreateFacilityConst
- * 创 建 者:Garrett
- * 创建日期:2019/10/23 10:50:02
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Saga.PlugIn.CreateFacility
- {
- /// <summary>
- /// CreateFacilityConst
- /// </summary>
- public class CreateFacilityConst
- {
- /// <summary>
- /// 资产id
- /// </summary>
- public const string PropertyID = "PropertyID";
- }
- }
|