using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 数据采集项目 /// [SugarTable("eqp_daq")] public partial class EqpDaq : BaseEntity { public EqpDaq() { id = SnowflakeIdHelper.NextId(); } /// /// 数据源 /// public string data_source { get; set; } = string.Empty; /// /// 机号 /// public string? equip_code { get; set; } /// /// 标签名称 /// public string? label_name { get; set; } /// /// 标签点位 /// public string? label_point { get; set; } /// /// 数据类型 /// public string? data_type { get; set; } /// /// 是否启用 /// public int? enabled { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 设备id /// public string equip_id { get; set; } = string.Empty; /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// /// public string? oper { get; set; } /// /// /// public string? val { get; set; } /// /// /// public string? node { get; set; } /// /// 上料库位 /// [SugarColumn(IsIgnore = true)] public string? upmat_location_code { get; set; } /// /// 下料库位 /// [SugarColumn(IsIgnore = true)] public string? downmat_location_code { get; set; } }