| 12345678910111213141516171819202122 |
- 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 = "";
- /// <summary>
- /// 备注
- /// </summary>
- [Description("判定备注")]
- [JsonProperty("memo")]
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- }
- }
|