using Business.Core.Attributes; using Business.Model; using Microsoft.EntityFrameworkCore; using Spire.Pdf.General.Paper.Font.Rendering.Hinting; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using Volo.Abp.Domain.Entities; namespace Bussiness.Model.Ext { /// /// ext_xref /// [CollectionName("dopbase", "ext_xrefTest")] [Comment("ext_xrefTest")] public class ext_xrefTest : Entity { public ext_xrefTest() { } public ext_xrefTest(long Id):base(Id) { } /// /// DOP表名 /// [StringLength(32)] [Comment("DOP表名")] public string? dop_table_name { get; set; } /// /// DOP表ID /// [Comment("DOP表ID")] public long? dop_id { get; set; } /// /// 表列1名 /// [StringLength(32)] [Comment("表列1名")] public string? dop_col1_name { get; set; } /// /// 表列1值 /// [StringLength(80)] [Comment("表列1值")] public string? dop_col1_value { get; set; } /// /// 表列2名 /// [StringLength(32)] [Comment("表列2名")] public string? dop_col2_name { get; set; } /// /// 表列2值 /// [StringLength(80)] [Comment("表列2值")] public string? dop_col2_value { get; set; } /// /// 表列3名 /// [StringLength(32)] [Comment("表列3名")] public string? dop_col3_name { get; set; } /// /// 表列3值 /// [StringLength(80)] [Comment("表列3值")] public string? dop_col3_value { get; set; } /// /// 表列4名 /// [StringLength(32)] [Comment("表列4名")] public string? dop_col4_name { get; set; } /// /// 表列4值 /// [StringLength(80)] [Comment("表列4值")] public string? dop_col4_value { get; set; } /// /// 表列5名 /// [StringLength(32)] [Comment("表列5名")] public string? dop_col5_name { get; set; } /// /// 表列5值 /// [StringLength(80)] [Comment("表列5值")] public string? dop_col5_value { get; set; } /// /// 其它系统名 /// [StringLength(32)] [Comment("其它系统名")] public string? other_sys_name { get; set; } /// /// 其它表名 /// [StringLength(32)] [Comment("其它表名")] public string? other_table_name { get; set; } /// /// 它表ID /// [Comment("它表ID")] public long? other_id { get; set; } /// /// 它列1名 /// [StringLength(32)] [Comment("它列1名")] public string? other_col1_name { get; set; } /// /// 它列1名 /// [StringLength(80)] [Comment("它列1名")] public string? other_col1_value { get; set; } /// /// 它列2名 /// [StringLength(32)] [Comment("它列2名")] public string? other_col2_name { get; set; } /// /// 它列2名 /// [StringLength(80)] [Comment("它列2名")] public string? other_col2_value { get; set; } /// /// 它列3名 /// [StringLength(32)] [Comment("它列3名")] public string? other_col3_name { get; set; } /// /// 它列3名 /// [StringLength(80)] [Comment("它列3名")] public string? other_col3_value { get; set; } /// /// 它列4名 /// [StringLength(32)] [Comment("它列4名")] public string? other_col4_name { get; set; } /// /// 它列4名 /// [StringLength(80)] [Comment("它列4名")] public string? other_col4_value { get; set; } /// /// 它列5名 /// [StringLength(32)] [Comment("它列5名")] public string? other_col5_name { get; set; } /// /// 它列5名 /// [StringLength(80)] [Comment("它列5名")] public string? other_col5_value { get; set; } /// /// 备注信息 /// [Comment("备注信息")] [StringLength(255)] public string? note { get; set; } /// /// DOP系统名 /// [Comment("DOP系统名")] [StringLength(32)] public string? dop_sys_name { get; set; } } }