You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Shentun.Peis.Models
|
|
{
|
|
|
|
/// <summary>
|
|
/// 字段对照第三方系统编码表
|
|
/// </summary>
|
|
[Table("column_reference_interface")]
|
|
public class ColumnReferenceInterface : AuditedEntity<Guid>, IHasConcurrencyStamp
|
|
{
|
|
|
|
/// <summary>
|
|
/// 字段对照本系统编码表ID
|
|
/// </summary>
|
|
[Column("column_reference_code_id")]
|
|
public Guid ColumnReferenceCodeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 第三方系统编码值
|
|
/// </summary>
|
|
[Column("interface_code_value")]
|
|
public string InterfaceCodeValue { get; set; }
|
|
|
|
|
|
|
|
|
|
[Column("concurrency_stamp")]
|
|
public string ConcurrencyStamp { get; set; }
|
|
|
|
|
|
[ForeignKey(nameof(ColumnReferenceCodeId))]
|
|
public virtual ColumnReferenceCode ColumnReferenceCode { get; set; }
|
|
}
|
|
}
|