StlIncisionCtrlEntity.cs 498 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. public class StlIncisionCtrlEntity : StlIncisionEntity
  7. {
  8. private string memo = "";
  9. /// <summary>
  10. /// 备注
  11. /// </summary>
  12. [Description("判定备注")]
  13. [JsonProperty("memo")]
  14. public string Memo
  15. {
  16. get { return memo; }
  17. set { memo = value; }
  18. }
  19. }
  20. }