2025-03-28 09:49:56 +08:00

308 lines
10 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.Coop.Merchant.Interface
{
#region T_AUTOSTATISTICS IAUTOSTATISTICS
/// <summary>
/// T_AUTOSTATISTICS 接口
/// </summary>
public interface IAUTOSTATISTICS
{
/// <summary>
/// 统计归口内码
/// </summary>
System.Int32? AUTOSTATISTICS_ID { get; set; }
/// <summary>
/// 统计归口内码 的加密字符串
/// </summary>
string AUTOSTATISTICS_ID_Encrypt { get; set; }
/// <summary>
/// 父级内码
/// </summary>
System.Int32? AUTOSTATISTICS_PID { get; set; }
/// <summary>
/// 归口名称
/// </summary>
System.String AUTOSTATISTICS_NAME { get; set; }
/// <summary>
/// 归口值域
/// </summary>
System.String AUTOSTATISTICS_VALUE { get; set; }
/// <summary>
/// 归口索引
/// </summary>
System.Int32? AUTOSTATISTICS_INDEX { get; set; }
/// <summary>
/// 归口类型
/// </summary>
System.Int32? AUTOSTATISTICS_TYPE { get; set; }
/// <summary>
/// 统计归口
/// </summary>
System.Int32? STATISTICS_TYPE { get; set; }
/// <summary>
/// 显示图标
/// </summary>
System.String AUTOSTATISTICS_ICO { get; set; }
/// <summary>
/// 业主内码
/// </summary>
System.Int32? OWNERUNIT_ID { get; set; }
/// <summary>
/// 业主单位
/// </summary>
System.String OWNERUNIT_NAME { get; set; }
/// <summary>
/// 省份标识
/// </summary>
System.Int32? PROVINCE_CODE { get; set; }
/// <summary>
/// 有效状态
/// </summary>
System.Int32? AUTOSTATISTICS_STATE { get; set; }
/// <summary>
/// 操作人内码
/// </summary>
System.Int32? STAFF_ID { get; set; }
/// <summary>
/// 操作人员
/// </summary>
System.String STAF_NAME { get; set; }
/// <summary>
/// 操作时间
/// </summary>
System.DateTime? OPERATE_DATE { get; set; }
/// <summary>
/// 备注说明
/// </summary>
System.String AUTOSTATISTICS_DESC { get; set; }
}
#endregion
#region T_AUTOSTATISTICS IModifyAUTOSTATISTICS
/// <summary>
/// T_AUTOSTATISTICS 接口
/// </summary>
public interface IModifyAUTOSTATISTICS
{
/// <summary>
/// 统计归口内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUTOSTATISTICS_ID { get; set; }
/// <summary>
/// 父级内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUTOSTATISTICS_PID { get; set; }
/// <summary>
/// 归口名称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUTOSTATISTICS_NAME { get; set; }
/// <summary>
/// 归口值域 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUTOSTATISTICS_VALUE { get; set; }
/// <summary>
/// 归口索引 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUTOSTATISTICS_INDEX { get; set; }
/// <summary>
/// 归口类型 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUTOSTATISTICS_TYPE { get; set; }
/// <summary>
/// 统计归口 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_STATISTICS_TYPE { get; set; }
/// <summary>
/// 显示图标 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUTOSTATISTICS_ICO { get; set; }
/// <summary>
/// 业主内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_ID { get; set; }
/// <summary>
/// 业主单位 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_NAME { get; set; }
/// <summary>
/// 省份标识 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_PROVINCE_CODE { get; set; }
/// <summary>
/// 有效状态 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUTOSTATISTICS_STATE { get; set; }
/// <summary>
/// 操作人内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_STAFF_ID { get; set; }
/// <summary>
/// 操作人员 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_STAF_NAME { get; set; }
/// <summary>
/// 操作时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OPERATE_DATE { get; set; }
/// <summary>
/// 备注说明 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUTOSTATISTICS_DESC { get; set; }
}
#endregion
#region T_AUTOSTATISTICS
/// <summary>
/// T_AUTOSTATISTICS_自定义统计归口表 的字段类
/// </summary>
public class TableSchema_AUTOSTATISTICS
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_autostatistics";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_AUTOSTATISTICS";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "自定义统计归口表";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "AUTOSTATISTICS_ID";
/// <summary>
/// 统计归口内码
/// </summary>
public const string AUTOSTATISTICS_ID = "AUTOSTATISTICS_ID";
/// <summary>
/// 父级内码
/// </summary>
public const string AUTOSTATISTICS_PID = "AUTOSTATISTICS_PID";
/// <summary>
/// 归口名称
/// </summary>
public const string AUTOSTATISTICS_NAME = "AUTOSTATISTICS_NAME";
/// <summary>
/// 归口值域
/// </summary>
public const string AUTOSTATISTICS_VALUE = "AUTOSTATISTICS_VALUE";
/// <summary>
/// 归口索引
/// </summary>
public const string AUTOSTATISTICS_INDEX = "AUTOSTATISTICS_INDEX";
/// <summary>
/// 归口类型
/// </summary>
public const string AUTOSTATISTICS_TYPE = "AUTOSTATISTICS_TYPE";
/// <summary>
/// 统计归口
/// </summary>
public const string STATISTICS_TYPE = "STATISTICS_TYPE";
/// <summary>
/// 显示图标
/// </summary>
public const string AUTOSTATISTICS_ICO = "AUTOSTATISTICS_ICO";
/// <summary>
/// 业主内码
/// </summary>
public const string OWNERUNIT_ID = "OWNERUNIT_ID";
/// <summary>
/// 业主单位
/// </summary>
public const string OWNERUNIT_NAME = "OWNERUNIT_NAME";
/// <summary>
/// 省份标识
/// </summary>
public const string PROVINCE_CODE = "PROVINCE_CODE";
/// <summary>
/// 有效状态
/// </summary>
public const string AUTOSTATISTICS_STATE = "AUTOSTATISTICS_STATE";
/// <summary>
/// 操作人内码
/// </summary>
public const string STAFF_ID = "STAFF_ID";
/// <summary>
/// 操作人员
/// </summary>
public const string STAF_NAME = "STAF_NAME";
/// <summary>
/// 操作时间
/// </summary>
public const string OPERATE_DATE = "OPERATE_DATE";
/// <summary>
/// 备注说明
/// </summary>
public const string AUTOSTATISTICS_DESC = "AUTOSTATISTICS_DESC";
/// <summary>
/// 统计归口内码
/// </summary>
public const string Comment_AUTOSTATISTICS_ID = "统计归口内码";
/// <summary>
/// 父级内码
/// </summary>
public const string Comment_AUTOSTATISTICS_PID = "父级内码";
/// <summary>
/// 归口名称
/// </summary>
public const string Comment_AUTOSTATISTICS_NAME = "归口名称";
/// <summary>
/// 归口值域
/// </summary>
public const string Comment_AUTOSTATISTICS_VALUE = "归口值域";
/// <summary>
/// 归口索引
/// </summary>
public const string Comment_AUTOSTATISTICS_INDEX = "归口索引";
/// <summary>
/// 归口类型
/// </summary>
public const string Comment_AUTOSTATISTICS_TYPE = "归口类型";
/// <summary>
/// 统计归口
/// </summary>
public const string Comment_STATISTICS_TYPE = "统计归口";
/// <summary>
/// 显示图标
/// </summary>
public const string Comment_AUTOSTATISTICS_ICO = "显示图标";
/// <summary>
/// 业主内码
/// </summary>
public const string Comment_OWNERUNIT_ID = "业主内码";
/// <summary>
/// 业主单位
/// </summary>
public const string Comment_OWNERUNIT_NAME = "业主单位";
/// <summary>
/// 省份标识
/// </summary>
public const string Comment_PROVINCE_CODE = "省份标识";
/// <summary>
/// 有效状态
/// </summary>
public const string Comment_AUTOSTATISTICS_STATE = "有效状态";
/// <summary>
/// 操作人内码
/// </summary>
public const string Comment_STAFF_ID = "操作人内码";
/// <summary>
/// 操作人员
/// </summary>
public const string Comment_STAF_NAME = "操作人员";
/// <summary>
/// 操作时间
/// </summary>
public const string Comment_OPERATE_DATE = "操作时间";
/// <summary>
/// 备注说明
/// </summary>
public const string Comment_AUTOSTATISTICS_DESC = "备注说明";
}
#endregion
}