2025-08-15 16:34:31 +08:00

71 lines
1.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock;
namespace SWS.CAD.Models
{
public class ec_dataitem
{
#region
/// <summary>
/// 字典分类ID
/// </summary>
public string DataItemID { get; set; }
/// <summary>
/// 上级字典分类ID
/// </summary>
public string UpDataItemID { get; set; } = "";
/// <summary>
/// 字典分类名称
/// </summary>
public string DataItemName { get; set; } = "";
/// <summary>
/// 字典分类编号(如be_signal_group
/// </summary>
public string DataItemCode { get; set; } = "";
/// <summary>
/// 排序
/// </summary>
public int? OrderID { get; set; }
/// <summary>
/// 是否有效
/// </summary>
public int? IsEnabled { get; set; }
/// <summary>
/// 是否树形
/// </summary>
public int? IsTree { get; set; }
/// <summary>
/// 是否允许编辑
/// </summary>
public int? IsAllowEdit { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; } = "";
/// <summary>
/// 创建人
/// </summary>
public string CreateUserID { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
public string UpdateUserID { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime? UpdateTime { get; set; }
#endregion
}
}