123456789101112131415161718192021 |
- 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
- {
- /// <summary>
- /// 名称
- /// </summary>
- public string UserName { get; set; }
-
- }
- }
|