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.
93 lines
2.5 KiB
C#
93 lines
2.5 KiB
C#
3 years ago
|
using FreeSql.DatabaseModel;using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Reflection;
|
||
|
using System.Threading.Tasks;
|
||
|
using Newtonsoft.Json;
|
||
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace djy.Model {
|
||
|
|
||
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "OP_TASK", DisableSyncStructure = true)]
|
||
|
public partial class OPTASK {
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
||
|
public string GID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
||
|
public string BSNO { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
||
|
public string ComId { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string COMNAME { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public DateTime? COMPLETETIME { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string COMPLETETYPE { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(InsertValueSql = "getdate()")]
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public DateTime? ETD { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(1000)")]
|
||
|
public string ExtData { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(300)")]
|
||
|
public string FILEPATH { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public bool ISCOMPLETE { get; set; } = false;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(300)")]
|
||
|
public string MailPath { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string MBLNO { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
||
|
public string RelativeId { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
||
|
public string REMARK { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
||
|
public string SourceTask { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public DateTime? TASKBEGINDATE { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string TASKDESCRIP { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
||
|
public string TASKNO { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string TASKSOURCE { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string TASKSTATUS { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string TASKTITLE { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
||
|
public string TASKTYPE { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
||
|
public string USERID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string UserName { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|