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.

78 lines
2.0 KiB
C#

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 = "workflow_do", DisableSyncStructure = true)]
public partial class WorkflowDo {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
[JsonProperty, Column(DbType = "varchar(36)")]
public string APPLICANT { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string AUDITOR { get; set; }
[JsonProperty]
public DateTime? AUDITTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string BILLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string DELETEOPERATOR { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string DELETESTEP { get; set; }
[JsonProperty]
public int? DELETESTEPNO { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string DOQUERYSQL { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string FEEID { get; set; }
[JsonProperty]
public int? FEESTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string GROUPID { get; set; }
[JsonProperty]
public int? ISALLFINISH { get; set; } = 0;
[JsonProperty]
public bool? ISDELETE { get; set; }
[JsonProperty]
public bool? ISFINISH { get; set; } = false;
[JsonProperty, Column(DbType = "varchar(36)")]
public string OPERATOR { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string STEPID { get; set; }
[JsonProperty]
public int? STEPNO { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string WORKFLOWID { get; set; }
}
}