FactoryAppServer.cs 512 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapEntity
  5. {
  6. public class FactoryAppServer
  7. {
  8. /// <summary>
  9. /// 园区代码
  10. /// </summary>
  11. public string FactoryCode { get; set; }
  12. /// <summary>
  13. /// 园区服务器代码
  14. /// </summary>
  15. public string AppServeCode { get; set; }
  16. /// <summary>
  17. /// 园区服务器Id
  18. /// </summary>
  19. public int AppServerId { get; set; }
  20. }
  21. }