管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2023-09-07 093df84b78ebbf020fcb4f752b900925aac07565
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.Web;
 
namespace MoonExp.Models
{
    public class SysTask
    {
        public int id { set; get; }
 
        public string name { set; get; }
 
        /// <summary>
        /// 状态:0-未开始,1-进行中,2-正常结束,3-用户结束,4-运行出错
        /// </summary>
        public int status { set; get; }
 
        /// <summary>
        /// 类别:DOM,DEM,MPT,3DML,CPT,BIM,LAS,OSGB,PNG
        /// </summary>
        public string type { set; get; }
 
        public string descr { set; get; }
 
        public string err { set; get; }
 
        public string ip { set; get; }
 
        public int pid { set; get; }
 
        public string gids { set; get; }
 
        public string depcode { set; get; }
 
        public string dircode { set; get; }
 
        public int create_user { set; get; }
 
        public DateTime create_time { set; get; }
 
        public int update_user { set; get; }
 
        public DateTime update_time { set; get; }
    }
}