UserEntity.cs 414 B

123456789101112131415161718192021
  1. using Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.ComponentModel.DataAnnotations.Schema;
  8. namespace Models.Entity
  9. {
  10. [Table("User"), Key("id")]
  11. public class UserEntity: BaseEntity
  12. {
  13. /// <summary>
  14. /// 名称
  15. /// </summary>
  16. public string UserName { get; set; }
  17. }
  18. }