using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Result { /// /// 客户端数据源字段顺序结果 /// public class ClientFieldOrderResult { /// /// 字段名称 /// public string FieldName { get; set; } /// /// 字段描述 /// public string FieldDesc { get; set; } /// /// 是否只读 /// public bool IsReadOnly { get; set; } = true; } }