using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.BasicData.Entities;
///
/// 工厂基础数据
///
[SugarTable("bas_factory_config")]
public partial class BasFactoryConfig : BaseEntity
{
public BasFactoryConfig()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 名称
///
public string name { get; set; } = string.Empty;
///
/// key
///
public string key { get; set; } = string.Empty;
///
/// 值
///
public string value { get; set; } = string.Empty;
///
/// 是否启用
///
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; }
///
/// 排序
///
public long? ordinal { get; set; }
///
/// 是否系统
///
public int? is_system { get; set; }
///
/// 流程任务Id
///
public string? f_flowtaskid { get; set; }
///
/// 流程引擎Id
///
public string? f_flowid { get; set; }
}