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.
60 lines
1.3 KiB
60 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Data.Attributes;
|
|
using System.Runtime.Serialization;
|
|
using System.Data;
|
|
|
|
namespace QMAPP.Entity.QueryTL.Entity
|
|
{
|
|
/// <summary>
|
|
/// 流程设置实体
|
|
/// 创建者:
|
|
/// 创建日期:
|
|
/// </summary>
|
|
[DBTable(TableName = "T_QM_ZPFLOW")]
|
|
public class T_QM_ZPFLOW : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 流程编号
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "FLOWLEVEL", DataType = DbType.Int32)]
|
|
public Int32 FlowLevel
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 部门ID
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "SDEPT", DataType = DbType.String)]
|
|
public string SDept
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 人员ID
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "SUSER", DataType = DbType.String)]
|
|
public string SUser
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
}
|
|
}
|
|
|