| 12345678910111213141516171819202122 |
- using Core.StlMes.Client.Judge.Models;
- using Newtonsoft.Json;
- using System.ComponentModel;
- namespace Core.StlMes.Client.Judge.ViewModels
- {
- class CraftLg2CicCtrlEntity : CraftLg2CicEntity
- {
- private string chemTypeDesc = "";
- /// <summary>
- /// 元素类型
- /// </summary>
- [Description("元素类型")]
- [JsonProperty("chemTypeDesc")]
- public string ChemTypeDesc
- {
- get { return chemTypeDesc; }
- set { chemTypeDesc = value; }
- }
- }
- }
|