You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.Dispatch.DB
{
[Table("op_task")]
public class OpTaskInfo
{
[Key]
public string GID { get; set; }
public string TASKNO { get; set; }
public string PTASKNO { get; set; }
public string TASKTYPE { get; set; }
public string TASKSOURCE { get; set; }
public string TASKSTATUS { get; set; }
public string TASKTITLE { get; set; }
public string TASKDESCRIP { get; set; }
public string CREATEUSER { get; set; }
public string CORPID { get; set; }
public DateTime CREATETIME { get; set; }
public DateTime TASKBEGINDATE { get; set; }
public string COMPLETETYPE { get; set; }
public DateTime? COMPLETETIME { get; set; }
public bool? KPI { get; set; }
public string MBLNO { get; set; }
public string FILENO { get; set; }
public string MAILNO { get; set; }
public string FILEPATH { get; set; }
public bool ISPUBLIC { get; set; }
public string OP { get; set; }
public string BSNO { get; set; }
public int? ISCOMPLETE { get; set; }
public string REMARK { get; set; }
}
}