using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
namespace APT.BaseData.Domain.Entities.FM
{
///
/// 导入配置
///
[Description("导入配置")]
[IgnoreT4]public class T_FM_IMPORT_CONFIG : MesEntityBase
{
/// 编码
[CUnique]
[Description("编码")]
public string CODE { get; set; }
///
/// 名称
///
[Description("名称")]
[AcronymField("NAME_ACRONYM")]
public string NAME { get; set; }
///
/// 名称首字母缩写
///
[Description("名称首字母缩写")]
public string NAME_ACRONYM { get; set; }
///
/// 保存API
///
[Description("保存URL路径")]
public string API_URL { get; set; }
///
/// 主表 表名
///
[Description("表名")]
public string TABLE_NAME { get; set; }
///
/// 编辑表单编号
///
[Description("编辑表单编号")]
public string EDIT_FORM_CODE { get; set; }
///
/// FMEnableStatusEnum
///
[Description("启用标志")]
[EnumName("FMEnableStatusEnum")]
public int ENABLE_STATUS { get; set; }
[Description("备注")]
public string REMARK { get; set; }
[Description("导航:导入配置明细")]
public virtual ICollection Nav_Details { get; set; }
[Description("源ID")]
public Guid? SRC_ID { get; set; }
}
}