| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- 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
- {
- /// <summary>
- /// ext_xref
- /// </summary>
- [CollectionName("dopbase", "ext_xrefTest")]
- [Comment("ext_xrefTest")]
- public class ext_xrefTest : Entity<long>
- {
- public ext_xrefTest()
- {
- }
- public ext_xrefTest(long Id):base(Id)
- {
- }
- /// <summary>
- /// DOP表名
- /// </summary>
- [StringLength(32)]
- [Comment("DOP表名")]
- public string? dop_table_name { get; set; }
- /// <summary>
- /// DOP表ID
- /// </summary>
- [Comment("DOP表ID")]
- public long? dop_id { get; set; }
- /// <summary>
- /// 表列1名
- /// </summary>
- [StringLength(32)]
- [Comment("表列1名")]
- public string? dop_col1_name { get; set; }
- /// <summary>
- /// 表列1值
- /// </summary>
- [StringLength(80)]
- [Comment("表列1值")]
- public string? dop_col1_value { get; set; }
- /// <summary>
- /// 表列2名
- /// </summary>
- [StringLength(32)]
- [Comment("表列2名")]
- public string? dop_col2_name { get; set; }
- /// <summary>
- /// 表列2值
- /// </summary>
- [StringLength(80)]
- [Comment("表列2值")]
- public string? dop_col2_value { get; set; }
- /// <summary>
- /// 表列3名
- /// </summary>
- [StringLength(32)]
- [Comment("表列3名")]
- public string? dop_col3_name { get; set; }
- /// <summary>
- /// 表列3值
- /// </summary>
- [StringLength(80)]
- [Comment("表列3值")]
- public string? dop_col3_value { get; set; }
- /// <summary>
- /// 表列4名
- /// </summary>
- [StringLength(32)]
- [Comment("表列4名")]
- public string? dop_col4_name { get; set; }
- /// <summary>
- /// 表列4值
- /// </summary>
- [StringLength(80)]
- [Comment("表列4值")]
- public string? dop_col4_value { get; set; }
- /// <summary>
- /// 表列5名
- /// </summary>
- [StringLength(32)]
- [Comment("表列5名")]
- public string? dop_col5_name { get; set; }
- /// <summary>
- /// 表列5值
- /// </summary>
- [StringLength(80)]
- [Comment("表列5值")]
- public string? dop_col5_value { get; set; }
- /// <summary>
- /// 其它系统名
- /// </summary>
- [StringLength(32)]
- [Comment("其它系统名")]
- public string? other_sys_name { get; set; }
- /// <summary>
- /// 其它表名
- /// </summary>
- [StringLength(32)]
- [Comment("其它表名")]
- public string? other_table_name { get; set; }
- /// <summary>
- /// 它表ID
- /// </summary>
- [Comment("它表ID")]
- public long? other_id { get; set; }
- /// <summary>
- /// 它列1名
- /// </summary>
- [StringLength(32)]
- [Comment("它列1名")]
- public string? other_col1_name { get; set; }
- /// <summary>
- /// 它列1名
- /// </summary>
- [StringLength(80)]
- [Comment("它列1名")]
- public string? other_col1_value { get; set; }
- /// <summary>
- /// 它列2名
- /// </summary>
- [StringLength(32)]
- [Comment("它列2名")]
- public string? other_col2_name { get; set; }
- /// <summary>
- /// 它列2名
- /// </summary>
- [StringLength(80)]
- [Comment("它列2名")]
- public string? other_col2_value { get; set; }
- /// <summary>
- /// 它列3名
- /// </summary>
- [StringLength(32)]
- [Comment("它列3名")]
- public string? other_col3_name { get; set; }
- /// <summary>
- /// 它列3名
- /// </summary>
- [StringLength(80)]
- [Comment("它列3名")]
- public string? other_col3_value { get; set; }
- /// <summary>
- /// 它列4名
- /// </summary>
- [StringLength(32)]
- [Comment("它列4名")]
- public string? other_col4_name { get; set; }
- /// <summary>
- /// 它列4名
- /// </summary>
- [StringLength(80)]
- [Comment("它列4名")]
- public string? other_col4_value { get; set; }
- /// <summary>
- /// 它列5名
- /// </summary>
- [StringLength(32)]
- [Comment("它列5名")]
- public string? other_col5_name { get; set; }
- /// <summary>
- /// 它列5名
- /// </summary>
- [StringLength(80)]
- [Comment("它列5名")]
- public string? other_col5_value { get; set; }
- /// <summary>
- /// 备注信息
- /// </summary>
- [Comment("备注信息")]
- [StringLength(255)]
- public string? note { get; set; }
- /// <summary>
- /// DOP系统名
- /// </summary>
- [Comment("DOP系统名")]
- [StringLength(32)]
- public string? dop_sys_name { get; set; }
- }
- }
|