namespace Learun.Application.Base.SystemModule
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创建人:陈彬彬
/// 日 期:2018.03.27
/// 描 述:数据字典数据模型
///
public class DataItemModel
{
///
/// 上级ID
///
public string parentId { get; set; }
///
/// 显示名称
///
public string text { get; set; }
///
/// 值
///
public string value { get; set; }
}
}