2025-03-27 15:05:14 +08:00

281 lines
7.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
using System.Runtime.Serialization;
namespace EShang.Common.Model
{
/// <summary>
/// 审批意见相关类
/// 2023/10/13 17:46:56自动生成
/// </summary>
[DataContract]
public class APPROVEDModel
{
#region APPROVED_ID
System.Int32? _APPROVED_ID = null;
/// <summary>
/// 审批意见内码
/// </summary>
[DataMember]
public System.Int32? APPROVED_ID
{
get { return _APPROVED_ID; }
set
{
if (_APPROVED_ID != value)
{
_APPROVED_ID = value;
}
}
}
#endregion
#region TABLE_ID
System.Int32? _TABLE_ID = null;
/// <summary>
/// 数据表主键值
/// </summary>
[DataMember]
public System.Int32? TABLE_ID
{
get { return _TABLE_ID; }
set
{
if (_TABLE_ID != value)
{
_TABLE_ID = value;
}
}
}
#endregion
#region TABLE_NAME
System.String _TABLE_NAME = null;
/// <summary>
/// 数据表名称
/// </summary>
[DataMember]
public System.String TABLE_NAME
{
get { return _TABLE_NAME; }
set
{
if (_TABLE_NAME != value)
{
_TABLE_NAME = value;
}
}
}
#endregion
#region DEPARTMENT_NAME
System.String _DEPARTMENT_NAME = null;
/// <summary>
/// 部门名称
/// </summary>
[DataMember]
public System.String DEPARTMENT_NAME
{
get { return _DEPARTMENT_NAME; }
set
{
if (_DEPARTMENT_NAME != value)
{
_DEPARTMENT_NAME = value;
}
}
}
#endregion
#region APPROVED_TYPE
System.Int32? _APPROVED_TYPE = null;
/// <summary>
/// 意见类型
/// </summary>
[DataMember]
public System.Int32? APPROVED_TYPE
{
get { return _APPROVED_TYPE; }
set
{
if (_APPROVED_TYPE != value)
{
_APPROVED_TYPE = value;
}
}
}
#endregion
#region APPROVED_INFO
System.String _APPROVED_INFO = null;
/// <summary>
/// 意见内容
/// </summary>
[DataMember]
public System.String APPROVED_INFO
{
get { return _APPROVED_INFO; }
set
{
if (_APPROVED_INFO != value)
{
_APPROVED_INFO = value;
}
}
}
#endregion
#region APPROVED_STAFFID
System.Int32? _APPROVED_STAFFID = null;
/// <summary>
/// 审批人内码
/// </summary>
[DataMember]
public System.Int32? APPROVED_STAFFID
{
get { return _APPROVED_STAFFID; }
set
{
if (_APPROVED_STAFFID != value)
{
_APPROVED_STAFFID = value;
}
}
}
#endregion
#region APPROVED_STAFF
System.String _APPROVED_STAFF = null;
/// <summary>
/// 审批人员
/// </summary>
[DataMember]
public System.String APPROVED_STAFF
{
get { return _APPROVED_STAFF; }
set
{
if (_APPROVED_STAFF != value)
{
_APPROVED_STAFF = value;
}
}
}
#endregion
#region APPROVED_DATE
System.Int64? _APPROVED_DATE = null;
/// <summary>
/// 审批时间
/// </summary>
[DataMember]
public System.Int64? APPROVED_DATE
{
get { return _APPROVED_DATE; }
set
{
if (_APPROVED_DATE != value)
{
_APPROVED_DATE = value;
}
}
}
#endregion
#region APPROVED_MARK 1000PC端2000
System.Int16? _APPROVED_MARK = null;
/// <summary>
/// 审批标志1000PC端2000移动端
/// </summary>
[DataMember]
public System.Int16? APPROVED_MARK
{
get { return _APPROVED_MARK; }
set
{
if (_APPROVED_MARK != value)
{
_APPROVED_MARK = value;
}
}
}
#endregion
#region APPROVED_NAME
System.String _APPROVED_NAME = null;
/// <summary>
/// 组件名称
/// </summary>
[DataMember]
public System.String APPROVED_NAME
{
get { return _APPROVED_NAME; }
set
{
if (_APPROVED_NAME != value)
{
_APPROVED_NAME = value;
}
}
}
#endregion
#region TIME_EFFICIENCY
System.Double? _TIME_EFFICIENCY = null;
/// <summary>
/// 审批时效(存储小时)
/// </summary>
[DataMember]
public System.Double? TIME_EFFICIENCY
{
get { return _TIME_EFFICIENCY; }
set
{
if (_TIME_EFFICIENCY != value)
{
_TIME_EFFICIENCY = value;
}
}
}
#endregion
#region APPROVED_DESC
System.String _APPROVED_DESC = null;
/// <summary>
/// 备注说明
/// </summary>
[DataMember]
public System.String APPROVED_DESC
{
get { return _APPROVED_DESC; }
set
{
if (_APPROVED_DESC != value)
{
_APPROVED_DESC = value;
}
}
}
#endregion
#region CONTRACTPROINST_ID
System.Int32? _CONTRACTPROINST_ID = null;
/// <summary>
/// 合同审批业务项目表内码
/// </summary>
[DataMember]
public System.Int32? CONTRACTPROINST_ID
{
get { return _CONTRACTPROINST_ID; }
set
{
if (_CONTRACTPROINST_ID != value)
{
_CONTRACTPROINST_ID = value;
}
}
}
#endregion
}
}