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.

22 lines
570 B

4 years ago
using System;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Domain.Entities.Auditing;
namespace Win_in.Sfs.Scp.WebApi.Domain.Shared
{
public class EntityBase<TKey> : AuditedAggregateRoot<TKey>
{
/// <summary>
/// 序列(SequenceNumber)
/// </summary>
[Display(Name = "序列(SequenceNumber)")]
public string SequenceNumber { set; get; }
/// <summary>
/// 版本(Name)
/// </summary>
[Display(Name = "版本(Version)")]
public string Version { set; get; }
}
}