using Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel.DataAnnotations.Schema; namespace Models.Entity { [Table("User"), Key("id")] public class UserEntity: BaseEntity { /// /// 名称 /// public string UserName { get; set; } } }