MepSystem.cs 618 B

12345678910111213141516171819202122232425
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:MepSystem
  3. * 作者:xulisong
  4. * 创建时间: 2019/6/12 11:00:35
  5. * 版本号:v1.0
  6. * -------------------------------------------------------------------------*/
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. using JBIM.Common;
  13. using JBIM.Definition;
  14. namespace JBIM.Component
  15. {
  16. /// <summary>
  17. /// mep系统相关
  18. /// </summary>
  19. [TypeDefiniton(TypeDefinition.MepSystem)]
  20. public class MepSystem: ComponentObject
  21. {
  22. }
  23. }