namespace Szmedi.RvKits.InfoManager { /// /// 数据库查询的共享参数映射 /// public class SharedParameterData { public string GUID { get; set; } /// /// 参数分组 /// public string ParamGroup { get; set; } /// /// 参数类别代码 /// public string ParamCategoryCode { get; set; } /// /// 分组代码 /// public string ParamGroupCode { get; set; } /// /// 参数名 /// public string ParamName { get; set; } /// /// 属性全称 /// public string FullParamName => string.IsNullOrEmpty(ParamCategoryCode) || string.IsNullOrEmpty(ParamGroupCode) ? $"{ParamName}" : $"{ParamCategoryCode}-{ParamGroupCode}-{ParamName}"; ///// ///// 规程 ///// //public string ParamDiscipline { get; set; } ///// ///// 实例、类型 ///// //public string ParamType { get; set; } /// /// 数据类型 /// public string DataType { get; set; } /// /// 可见性 /// public string Visiable { get; set; } /// /// 用户修改 /// public string UserModifiable { get; set; } /// /// 没有值隐藏 /// public string HideWhenNoValue { get; set; } } }