123456789101112131415161718192021222324252627282930313233 |
- using DW5S.Entity;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- namespace DW5S.ViewModel
- {
- public class LogResViewModel : BaseViewModel<long>
- {
-
- [Display(Name = "所属模块")]
- public string Module { get; set; }
-
- [Display(Name = "时间")]
- public DateTime LogTime { get; set; }
-
- [Display(Name = "日志类型")]
- public EnumLogType LogType { get; set; }
-
- [Display(Name = "内容")]
- public string Msg { get; set; }
- }
- }
|