0
0

LoginLogEntity.cs 217 B

123456789101112
  1. using FreeSql.DataAnnotations;
  2. namespace Admin.Core.Model.Admin
  3. {
  4. /// <summary>
  5. /// 操作日志
  6. /// </summary>
  7. [Table(Name = "ad_login_log")]
  8. public class LoginLogEntity : LogAbstract
  9. {
  10. }
  11. }