123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IntelligentControlForsx.Service.ParameterFormInfo.Domain
- {
- public class WindturbineUniformCode
- {
- /// <summary>
- /// 统一编码
- /// </summary>
- public string UnifromCode { set; get; }
- /// <summary>
- /// 含义
- /// </summary>
- public string Name { set; get; }
- }
- }
|