bklLiudl
2024-07-23 800b01a48d309fa19a624e943b3a8fb2e8eef5c8
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Model
{
    public class TaskMonitorModel
    {
        public string Guid { get; set; }
        public string TaskNo { get; set; }
        public int TaskNo1 { get; set; }
        public string TaskType { get; set; }
        public string InitialAddre { get; set; }
        public string Palno { get; set; }
        public string TargetAddre { get; set; }
        public string State { get; set; }
        public string IsSucceed { get; set; }
        public string ErrorStr { get; set; }
        public string CreateUser { get; set; }
        public int PriorityLevel { get; set; }
        public string Source { get; set; }
        public string Demo { get; set; }
        public DateTime CreateTime { get; set; }
        public string UpdateUser { get; set; }
        public DateTime UpdateTime { get; set; }
        public int IsDel { get; set; }
        public string TaskTypeName { get; set; }
        public string StateName { get; set; }
        public string IsSucceedName { get; set; }
        public string Operation { get; set; }
    }
 
    public class AjaxTaskMonitorList
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public string TaskNo { get; set; }
        public string TaskType { get; set; }
        public string State { get; set; }
        public string InitialAddre { get; set; }
        public string Palno { get; set; }
        public string TargetAddre { get; set; }
    }
}