WindturbineUniformCode.cs 458 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace IntelligentControlForsx.Service.ParameterFormInfo.Domain
  7. {
  8. public class WindturbineUniformCode
  9. {
  10. /// <summary>
  11. /// 统一编码
  12. /// </summary>
  13. public string UnifromCode { set; get; }
  14. /// <summary>
  15. /// 含义
  16. /// </summary>
  17. public string Name { set; get; }
  18. }
  19. }