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

244 lines
7.9 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.Finance.Running.Interface
{
#region T_APPLYSEAL IAPPLYSEAL
/// <summary>
/// T_APPLYSEAL 接口
/// </summary>
public interface IAPPLYSEAL
{
/// <summary>
/// 内码
/// </summary>
System.Int32? APPLYSEAL_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string APPLYSEAL_ID_Encrypt { get; set; }
/// <summary>
/// 流程内码
/// </summary>
System.Int32? FINANCEPROINST_ID { get; set; }
/// <summary>
/// 用印部门
/// </summary>
System.Int32? APPLYSEAL_DEPARTMENT { get; set; }
/// <summary>
/// 用印时间
/// </summary>
System.DateTime? APPLYSEAL_DATE { get; set; }
/// <summary>
/// 用印人
/// </summary>
System.String APPLYSEAL_PERSON { get; set; }
/// <summary>
/// 用印次数
/// </summary>
System.Int32? APPLYSEAL_COUNT { get; set; }
/// <summary>
/// 用印说明
/// </summary>
System.String APPLYSEAL_REASON { get; set; }
/// <summary>
/// 加盖何种印章
/// </summary>
System.Int16? APPLYSEAL_TYPE { get; set; }
/// <summary>
/// 备注
/// </summary>
System.String APPLYSEAL_DESC { get; set; }
/// <summary>
/// 操作人员
/// </summary>
System.Int32? STAFF_ID { get; set; }
/// <summary>
/// 操作人名
/// </summary>
System.String STAFF_NAME { get; set; }
/// <summary>
/// 操作时间
/// </summary>
System.DateTime? OPERATE_DATE { get; set; }
}
#endregion
#region T_APPLYSEAL IModifyAPPLYSEAL
/// <summary>
/// T_APPLYSEAL 接口
/// </summary>
public interface IModifyAPPLYSEAL
{
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPLYSEAL_ID { get; set; }
/// <summary>
/// 流程内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_FINANCEPROINST_ID { get; set; }
/// <summary>
/// 用印部门 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPLYSEAL_DEPARTMENT { get; set; }
/// <summary>
/// 用印时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPLYSEAL_DATE { get; set; }
/// <summary>
/// 用印人 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPLYSEAL_PERSON { get; set; }
/// <summary>
/// 用印次数 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPLYSEAL_COUNT { get; set; }
/// <summary>
/// 用印说明 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPLYSEAL_REASON { get; set; }
/// <summary>
/// 加盖何种印章 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPLYSEAL_TYPE { get; set; }
/// <summary>
/// 备注 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPLYSEAL_DESC { get; set; }
/// <summary>
/// 操作人员 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_STAFF_ID { get; set; }
/// <summary>
/// 操作人名 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_STAFF_NAME { get; set; }
/// <summary>
/// 操作时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OPERATE_DATE { get; set; }
}
#endregion
#region T_APPLYSEAL
/// <summary>
/// T_APPLYSEAL_用印申请记录 的字段类
/// </summary>
public class TableSchema_APPLYSEAL
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_applyseal";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_APPLYSEAL";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "用印申请记录";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "APPLYSEAL_ID";
/// <summary>
/// 内码
/// </summary>
public const string APPLYSEAL_ID = "APPLYSEAL_ID";
/// <summary>
/// 流程内码
/// </summary>
public const string FINANCEPROINST_ID = "FINANCEPROINST_ID";
/// <summary>
/// 用印部门
/// </summary>
public const string APPLYSEAL_DEPARTMENT = "APPLYSEAL_DEPARTMENT";
/// <summary>
/// 用印时间
/// </summary>
public const string APPLYSEAL_DATE = "APPLYSEAL_DATE";
/// <summary>
/// 用印人
/// </summary>
public const string APPLYSEAL_PERSON = "APPLYSEAL_PERSON";
/// <summary>
/// 用印次数
/// </summary>
public const string APPLYSEAL_COUNT = "APPLYSEAL_COUNT";
/// <summary>
/// 用印说明
/// </summary>
public const string APPLYSEAL_REASON = "APPLYSEAL_REASON";
/// <summary>
/// 加盖何种印章
/// </summary>
public const string APPLYSEAL_TYPE = "APPLYSEAL_TYPE";
/// <summary>
/// 备注
/// </summary>
public const string APPLYSEAL_DESC = "APPLYSEAL_DESC";
/// <summary>
/// 操作人员
/// </summary>
public const string STAFF_ID = "STAFF_ID";
/// <summary>
/// 操作人名
/// </summary>
public const string STAFF_NAME = "STAFF_NAME";
/// <summary>
/// 操作时间
/// </summary>
public const string OPERATE_DATE = "OPERATE_DATE";
/// <summary>
/// 内码
/// </summary>
public const string Comment_APPLYSEAL_ID = "内码";
/// <summary>
/// 流程内码
/// </summary>
public const string Comment_FINANCEPROINST_ID = "流程内码";
/// <summary>
/// 用印部门
/// </summary>
public const string Comment_APPLYSEAL_DEPARTMENT = "用印部门";
/// <summary>
/// 用印时间
/// </summary>
public const string Comment_APPLYSEAL_DATE = "用印时间";
/// <summary>
/// 用印人
/// </summary>
public const string Comment_APPLYSEAL_PERSON = "用印人";
/// <summary>
/// 用印次数
/// </summary>
public const string Comment_APPLYSEAL_COUNT = "用印次数";
/// <summary>
/// 用印说明
/// </summary>
public const string Comment_APPLYSEAL_REASON = "用印说明";
/// <summary>
/// 加盖何种印章
/// </summary>
public const string Comment_APPLYSEAL_TYPE = "加盖何种印章";
/// <summary>
/// 备注
/// </summary>
public const string Comment_APPLYSEAL_DESC = "备注";
/// <summary>
/// 操作人员
/// </summary>
public const string Comment_STAFF_ID = "操作人员";
/// <summary>
/// 操作人名
/// </summary>
public const string Comment_STAFF_NAME = "操作人名";
/// <summary>
/// 操作时间
/// </summary>
public const string Comment_OPERATE_DATE = "操作时间";
}
#endregion
}