liaoxujun@qq.com
2024-02-26 a71cfd93b85389e6473afdca1b7d6411bb676d0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// WTM默认页面 Wtm buidin page
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using WalkingTec.Mvvm.Core;
 
namespace WalkingTec.Mvvm.Mvc.Admin.ViewModels.ActionLogVMs
{
    public class ActionLogSearcher : BaseSearcher
    {
 
        [Display(Name = "_Admin.Account")]
        public string ITCode { get; set; }
 
        [Display(Name = "Url")]
        public string ActionUrl { get; set; }
 
        [Display(Name = "_Admin.LogType")]
        public List<ActionLogTypesEnum> LogType { get; set; }
 
        [Display(Name = "_Admin.ActionTime")]
        public DateRange ActionTime { get; set; }
 
 
        [Display(Name = "IP")]
        public string IP { get; set; }
 
        [Display(Name = "_Admin.Duration")]
        public double? Duration { get; set; }
 
    }
}