using 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; }
|
}
|
}
|