CraftLg2CicCtrlEntity.cs 537 B

12345678910111213141516171819202122
  1. using Core.StlMes.Client.Judge.Models;
  2. using Newtonsoft.Json;
  3. using System.ComponentModel;
  4. namespace Core.StlMes.Client.Judge.ViewModels
  5. {
  6. class CraftLg2CicCtrlEntity : CraftLg2CicEntity
  7. {
  8. private string chemTypeDesc = "";
  9. /// <summary>
  10. /// 元素类型
  11. /// </summary>
  12. [Description("元素类型")]
  13. [JsonProperty("chemTypeDesc")]
  14. public string ChemTypeDesc
  15. {
  16. get { return chemTypeDesc; }
  17. set { chemTypeDesc = value; }
  18. }
  19. }
  20. }