You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
4.1 KiB
148 lines
4.1 KiB
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace Entity.Sugar
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("OTB_EIP_CheckFlow")]
|
|
public partial class OTB_EIP_CheckFlow : ModelContext
|
|
{
|
|
public OTB_EIP_CheckFlow(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string Guid {get;set;}
|
|
public const string CN_GUID = "Guid";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string OrgID {get;set;}
|
|
public const string CN_ORGID = "OrgID";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string Flow_Type {get;set;}
|
|
public const string CN_FLOW_TYPE = "Flow_Type";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string Flow_Name {get;set;}
|
|
public const string CN_FLOW_NAME = "Flow_Name";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string Flows {get;set;}
|
|
public const string CN_FLOWS = "Flows";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string Handle_DeptID {get;set;}
|
|
public const string CN_HANDLE_DEPTID = "Handle_DeptID";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Handle_Person {get;set;}
|
|
public const string CN_HANDLE_PERSON = "Handle_Person";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string Flows_Lock {get;set;}
|
|
public const string CN_FLOWS_LOCK = "Flows_Lock";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string Handle_Lock {get;set;}
|
|
public const string CN_HANDLE_LOCK = "Handle_Lock";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string ShareType {get;set;}
|
|
public const string CN_SHARETYPE = "ShareType";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string ShareTo {get;set;}
|
|
public const string CN_SHARETO = "ShareTo";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Memo {get;set;}
|
|
public const string CN_MEMO = "Memo";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string CreateUser {get;set;}
|
|
public const string CN_CREATEUSER = "CreateUser";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? CreateDate {get;set;}
|
|
public const string CN_CREATEDATE = "CreateDate";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string ModifyUser {get;set;}
|
|
public const string CN_MODIFYUSER = "ModifyUser";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? ModifyDate {get;set;}
|
|
public const string CN_MODIFYDATE = "ModifyDate";
|
|
|
|
}
|
|
}
|