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

196 lines
6.2 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.HighWay.Running.Interface
{
#region T_JOINTLYSIGN IJOINTLYSIGN
/// <summary>
/// T_JOINTLYSIGN 接口
/// </summary>
public interface IJOINTLYSIGN
{
/// <summary>
/// 内码
/// </summary>
System.Int32? JOINTLYSIGN_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string JOINTLYSIGN_ID_Encrypt { get; set; }
/// <summary>
/// 项目流程内码
/// </summary>
System.Int32? HIGHWAYPROINST_ID { get; set; }
/// <summary>
/// 招标内码
/// </summary>
System.Int32? TENDER_ID { get; set; }
/// <summary>
/// 环节内码
/// </summary>
System.Int32? ACTDEF_ID { get; set; }
/// <summary>
/// 意见类型
/// </summary>
System.Int32? APPROVED_TYPE { get; set; }
/// <summary>
/// 意见内码
/// </summary>
System.String APPROVED_IDS { get; set; }
/// <summary>
/// 用户内码
/// </summary>
System.String USER_IDS { get; set; }
/// <summary>
/// 用户名称
/// </summary>
System.String USER_NAMES { get; set; }
/// <summary>
/// 备注
/// </summary>
System.String JOINTLYSIGN_DESC { get; set; }
}
#endregion
#region T_JOINTLYSIGN IModifyJOINTLYSIGN
/// <summary>
/// T_JOINTLYSIGN 接口
/// </summary>
public interface IModifyJOINTLYSIGN
{
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_JOINTLYSIGN_ID { get; set; }
/// <summary>
/// 项目流程内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_HIGHWAYPROINST_ID { get; set; }
/// <summary>
/// 招标内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_TENDER_ID { get; set; }
/// <summary>
/// 环节内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_ACTDEF_ID { get; set; }
/// <summary>
/// 意见类型 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPROVED_TYPE { get; set; }
/// <summary>
/// 意见内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPROVED_IDS { get; set; }
/// <summary>
/// 用户内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_USER_IDS { get; set; }
/// <summary>
/// 用户名称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_USER_NAMES { get; set; }
/// <summary>
/// 备注 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_JOINTLYSIGN_DESC { get; set; }
}
#endregion
#region T_JOINTLYSIGN
/// <summary>
/// T_JOINTLYSIGN_招标会签人员表 的字段类
/// </summary>
public class TableSchema_JOINTLYSIGN
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_jointlysign";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_JOINTLYSIGN";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "招标会签人员表";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "JOINTLYSIGN_ID";
/// <summary>
/// 内码
/// </summary>
public const string JOINTLYSIGN_ID = "JOINTLYSIGN_ID";
/// <summary>
/// 项目流程内码
/// </summary>
public const string HIGHWAYPROINST_ID = "HIGHWAYPROINST_ID";
/// <summary>
/// 招标内码
/// </summary>
public const string TENDER_ID = "TENDER_ID";
/// <summary>
/// 环节内码
/// </summary>
public const string ACTDEF_ID = "ACTDEF_ID";
/// <summary>
/// 意见类型
/// </summary>
public const string APPROVED_TYPE = "APPROVED_TYPE";
/// <summary>
/// 意见内码
/// </summary>
public const string APPROVED_IDS = "APPROVED_IDS";
/// <summary>
/// 用户内码
/// </summary>
public const string USER_IDS = "USER_IDS";
/// <summary>
/// 用户名称
/// </summary>
public const string USER_NAMES = "USER_NAMES";
/// <summary>
/// 备注
/// </summary>
public const string JOINTLYSIGN_DESC = "JOINTLYSIGN_DESC";
/// <summary>
/// 内码
/// </summary>
public const string Comment_JOINTLYSIGN_ID = "内码";
/// <summary>
/// 项目流程内码
/// </summary>
public const string Comment_HIGHWAYPROINST_ID = "项目流程内码";
/// <summary>
/// 招标内码
/// </summary>
public const string Comment_TENDER_ID = "招标内码";
/// <summary>
/// 环节内码
/// </summary>
public const string Comment_ACTDEF_ID = "环节内码";
/// <summary>
/// 意见类型
/// </summary>
public const string Comment_APPROVED_TYPE = "意见类型";
/// <summary>
/// 意见内码
/// </summary>
public const string Comment_APPROVED_IDS = "意见内码";
/// <summary>
/// 用户内码
/// </summary>
public const string Comment_USER_IDS = "用户内码";
/// <summary>
/// 用户名称
/// </summary>
public const string Comment_USER_NAMES = "用户名称";
/// <summary>
/// 备注
/// </summary>
public const string Comment_JOINTLYSIGN_DESC = "备注";
}
#endregion
}