using System.ComponentModel.DataAnnotations; namespace Infrastructure.Domain { public class Entity : BaseEntity { [Display(Name = "版本号")] public string RowVersion { get; set; } } }