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