260 lines
8.5 KiB
C#
260 lines
8.5 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.HighWay.Running.Interface
|
|
{
|
|
#region T_ACTINSTOPINION IACTINSTOPINION 接口
|
|
/// <summary>
|
|
/// T_ACTINSTOPINION 接口
|
|
/// </summary>
|
|
public interface IACTINSTOPINION
|
|
{
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
System.Int32? ACTINSTOPINION_ID { get; set; }
|
|
/// <summary>
|
|
/// 内码 的加密字符串
|
|
/// </summary>
|
|
string ACTINSTOPINION_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 项目流程内码
|
|
/// </summary>
|
|
System.Int32? HIGHWAYPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 环节内码
|
|
/// </summary>
|
|
System.Int32? ACTINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 部门名称
|
|
/// </summary>
|
|
System.String DEPARTMENT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 意见类型
|
|
/// </summary>
|
|
System.Int32? APPROVED_TYPE { get; set; }
|
|
/// <summary>
|
|
/// 审批意见
|
|
/// </summary>
|
|
System.String APPROVED_INFO { get; set; }
|
|
/// <summary>
|
|
/// 操作员内码
|
|
/// </summary>
|
|
System.Int32? STAFF_ID { get; set; }
|
|
/// <summary>
|
|
/// 操作人员
|
|
/// </summary>
|
|
System.String STAFF_NAME { get; set; }
|
|
/// <summary>
|
|
/// 审批人员
|
|
/// </summary>
|
|
System.String APPROVED_STAFF { get; set; }
|
|
/// <summary>
|
|
/// 审批时间
|
|
/// </summary>
|
|
System.DateTime? APPROVED_DATE { get; set; }
|
|
/// <summary>
|
|
/// 状态标记
|
|
/// </summary>
|
|
System.Int32? APPROVED_MARK { get; set; }
|
|
/// <summary>
|
|
/// 组件名称
|
|
/// </summary>
|
|
System.String APPROVED_NAME { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
System.String APPROVED_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_ACTINSTOPINION IModifyACTINSTOPINION 接口
|
|
/// <summary>
|
|
/// T_ACTINSTOPINION 接口
|
|
/// </summary>
|
|
public interface IModifyACTINSTOPINION
|
|
{
|
|
/// <summary>
|
|
/// 内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_ACTINSTOPINION_ID { get; set; }
|
|
/// <summary>
|
|
/// 项目流程内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_HIGHWAYPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 环节内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_ACTINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 部门名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_DEPARTMENT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 意见类型 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_APPROVED_TYPE { get; set; }
|
|
/// <summary>
|
|
/// 审批意见 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_APPROVED_INFO { get; set; }
|
|
/// <summary>
|
|
/// 操作员内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STAFF_ID { get; set; }
|
|
/// <summary>
|
|
/// 操作人员 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STAFF_NAME { get; set; }
|
|
/// <summary>
|
|
/// 审批人员 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_APPROVED_STAFF { get; set; }
|
|
/// <summary>
|
|
/// 审批时间 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_APPROVED_DATE { get; set; }
|
|
/// <summary>
|
|
/// 状态标记 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_APPROVED_MARK { get; set; }
|
|
/// <summary>
|
|
/// 组件名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_APPROVED_NAME { get; set; }
|
|
/// <summary>
|
|
/// 备注 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_APPROVED_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_ACTINSTOPINION 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_ACTINSTOPINION_当前环节意见表 的字段类
|
|
/// </summary>
|
|
public class TableSchema_ACTINSTOPINION
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_actinstopinion";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_ACTINSTOPINION";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "当前环节意见表";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "ACTINSTOPINION_ID";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string ACTINSTOPINION_ID = "ACTINSTOPINION_ID";
|
|
/// <summary>
|
|
/// 项目流程内码
|
|
/// </summary>
|
|
public const string HIGHWAYPROINST_ID = "HIGHWAYPROINST_ID";
|
|
/// <summary>
|
|
/// 环节内码
|
|
/// </summary>
|
|
public const string ACTINST_ID = "ACTINST_ID";
|
|
/// <summary>
|
|
/// 部门名称
|
|
/// </summary>
|
|
public const string DEPARTMENT_NAME = "DEPARTMENT_NAME";
|
|
/// <summary>
|
|
/// 意见类型
|
|
/// </summary>
|
|
public const string APPROVED_TYPE = "APPROVED_TYPE";
|
|
/// <summary>
|
|
/// 审批意见
|
|
/// </summary>
|
|
public const string APPROVED_INFO = "APPROVED_INFO";
|
|
/// <summary>
|
|
/// 操作员内码
|
|
/// </summary>
|
|
public const string STAFF_ID = "STAFF_ID";
|
|
/// <summary>
|
|
/// 操作人员
|
|
/// </summary>
|
|
public const string STAFF_NAME = "STAFF_NAME";
|
|
/// <summary>
|
|
/// 审批人员
|
|
/// </summary>
|
|
public const string APPROVED_STAFF = "APPROVED_STAFF";
|
|
/// <summary>
|
|
/// 审批时间
|
|
/// </summary>
|
|
public const string APPROVED_DATE = "APPROVED_DATE";
|
|
/// <summary>
|
|
/// 状态标记
|
|
/// </summary>
|
|
public const string APPROVED_MARK = "APPROVED_MARK";
|
|
/// <summary>
|
|
/// 组件名称
|
|
/// </summary>
|
|
public const string APPROVED_NAME = "APPROVED_NAME";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string APPROVED_DESC = "APPROVED_DESC";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string Comment_ACTINSTOPINION_ID = "内码";
|
|
/// <summary>
|
|
/// 项目流程内码
|
|
/// </summary>
|
|
public const string Comment_HIGHWAYPROINST_ID = "项目流程内码";
|
|
/// <summary>
|
|
/// 环节内码
|
|
/// </summary>
|
|
public const string Comment_ACTINST_ID = "环节内码";
|
|
/// <summary>
|
|
/// 部门名称
|
|
/// </summary>
|
|
public const string Comment_DEPARTMENT_NAME = "部门名称";
|
|
/// <summary>
|
|
/// 意见类型
|
|
/// </summary>
|
|
public const string Comment_APPROVED_TYPE = "意见类型";
|
|
/// <summary>
|
|
/// 审批意见
|
|
/// </summary>
|
|
public const string Comment_APPROVED_INFO = "审批意见";
|
|
/// <summary>
|
|
/// 操作员内码
|
|
/// </summary>
|
|
public const string Comment_STAFF_ID = "操作员内码";
|
|
/// <summary>
|
|
/// 操作人员
|
|
/// </summary>
|
|
public const string Comment_STAFF_NAME = "操作人员";
|
|
/// <summary>
|
|
/// 审批人员
|
|
/// </summary>
|
|
public const string Comment_APPROVED_STAFF = "审批人员";
|
|
/// <summary>
|
|
/// 审批时间
|
|
/// </summary>
|
|
public const string Comment_APPROVED_DATE = "审批时间";
|
|
/// <summary>
|
|
/// 状态标记
|
|
/// </summary>
|
|
public const string Comment_APPROVED_MARK = "状态标记";
|
|
/// <summary>
|
|
/// 组件名称
|
|
/// </summary>
|
|
public const string Comment_APPROVED_NAME = "组件名称";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string Comment_APPROVED_DESC = "备注";
|
|
}
|
|
#endregion
|
|
}
|