From 681b5acda6538ca7d43702792a6ea46142dc5b97 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期日, 30 七月 2023 12:05:25 +0800
Subject: [PATCH] 1

---
 ExportMap/ExportMap.csproj  |    1 +
 ExportMap/Models/SysTask.cs |   40 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/ExportMap/ExportMap.csproj b/ExportMap/ExportMap.csproj
index 0887cd3..83ee9c9 100644
--- a/ExportMap/ExportMap.csproj
+++ b/ExportMap/ExportMap.csproj
@@ -173,6 +173,7 @@
     <Compile Include="Models\SpatialItem.cs" />
     <Compile Include="Models\SysMeta.cs" />
     <Compile Include="Models\SysPublish.cs" />
+    <Compile Include="Models\SysTask.cs" />
     <Compile Include="Models\XYZArgs.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
   </ItemGroup>
diff --git a/ExportMap/Models/SysTask.cs b/ExportMap/Models/SysTask.cs
new file mode 100644
index 0000000..25bacfc
--- /dev/null
+++ b/ExportMap/Models/SysTask.cs
@@ -0,0 +1,40 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+
+namespace ExportMap.Models
+{
+    public class SysTask
+    {
+        public int id { set; get; }
+
+        public string name { set; get; }
+
+        public int status { set; get; }
+
+        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; }
+    }
+}

--
Gitblit v1.9.3