using Core.StlMes.Client.Judge.Models; using Newtonsoft.Json; using System.ComponentModel; namespace Core.StlMes.Client.Judge.ViewModels { public class StlIncisionCtrlEntity : StlIncisionEntity { private string memo = ""; /// /// 备注 /// [Description("判定备注")] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } } }