324 lines
11 KiB
C#
324 lines
11 KiB
C#
using System.Runtime.Serialization;
|
||
|
||
namespace SuperMap.RealEstate.EShangPush.Interface
|
||
{
|
||
#region T_OWNERUNIT IOWNERUNIT 接口
|
||
/// <summary>
|
||
/// T_OWNERUNIT 接口
|
||
/// </summary>
|
||
public interface IOWNERUNIT
|
||
{
|
||
/// <summary>
|
||
/// 业主内码
|
||
/// </summary>
|
||
System.Int32? OWNERUNIT_ID { get; set; }
|
||
/// <summary>
|
||
/// 业主内码 的加密字符串
|
||
/// </summary>
|
||
string OWNERUNIT_ID_Encrypt { get; set; }
|
||
/// <summary>
|
||
/// 父级内码
|
||
/// </summary>
|
||
System.Int32? OWNERUNIT_PID { get; set; }
|
||
/// <summary>
|
||
/// 省份标识
|
||
/// </summary>
|
||
System.Int32? PROVINCE_CODE { get; set; }
|
||
/// <summary>
|
||
/// 业务省份标识
|
||
/// </summary>
|
||
System.Int32? PROVINCE_BUSINESSCODE { get; set; }
|
||
/// <summary>
|
||
/// 业主单位
|
||
/// </summary>
|
||
System.String OWNERUNIT_NAME { get; set; }
|
||
/// <summary>
|
||
/// 业主简称
|
||
/// </summary>
|
||
System.String OWNERUNIT_EN { get; set; }
|
||
/// <summary>
|
||
/// 业主单位性质(1000:管理单位;2000:经营单位)
|
||
/// </summary>
|
||
System.Int32? OWNERUNIT_NATURE { get; set; }
|
||
/// <summary>
|
||
/// 业主标识
|
||
/// </summary>
|
||
System.String OWNERUNIT_GUID { get; set; }
|
||
/// <summary>
|
||
/// 排序字段
|
||
/// </summary>
|
||
System.Int32? OWNERUNIT_INDEX { get; set; }
|
||
/// <summary>
|
||
/// 业主图标
|
||
/// </summary>
|
||
System.String OWNERUNIT_ICO { get; set; }
|
||
/// <summary>
|
||
/// 有效状态
|
||
/// </summary>
|
||
System.Int16? OWNERUNIT_STATE { 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; }
|
||
/// <summary>
|
||
/// 备注
|
||
/// </summary>
|
||
System.String OWNERUNIT_DESC { get; set; }
|
||
/// <summary>
|
||
/// 业主单位是否支持积分功能
|
||
/// </summary>
|
||
System.Int16? ISSUPPORTPOINT { get; set; }
|
||
/// <summary>
|
||
/// 下载时间
|
||
/// </summary>
|
||
System.DateTime? DOWNLOAD_DATE { get; set; }
|
||
}
|
||
#endregion
|
||
|
||
#region T_OWNERUNIT IModifyOWNERUNIT 接口
|
||
/// <summary>
|
||
/// T_OWNERUNIT 接口
|
||
/// </summary>
|
||
public interface IModifyOWNERUNIT
|
||
{
|
||
/// <summary>
|
||
/// 业主内码 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_ID { get; set; }
|
||
/// <summary>
|
||
/// 父级内码 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_PID { get; set; }
|
||
/// <summary>
|
||
/// 省份标识 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_PROVINCE_CODE { get; set; }
|
||
/// <summary>
|
||
/// 业务省份标识 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_PROVINCE_BUSINESSCODE { get; set; }
|
||
/// <summary>
|
||
/// 业主单位 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_NAME { get; set; }
|
||
/// <summary>
|
||
/// 业主简称 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_EN { get; set; }
|
||
/// <summary>
|
||
/// 业主单位性质(1000:管理单位;2000:经营单位) 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_NATURE { get; set; }
|
||
/// <summary>
|
||
/// 业主标识 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_GUID { get; set; }
|
||
/// <summary>
|
||
/// 排序字段 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_INDEX { get; set; }
|
||
/// <summary>
|
||
/// 业主图标 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_ICO { get; set; }
|
||
/// <summary>
|
||
/// 有效状态 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_STATE { 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; }
|
||
/// <summary>
|
||
/// 备注 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_OWNERUNIT_DESC { get; set; }
|
||
/// <summary>
|
||
/// 业主单位是否支持积分功能 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_ISSUPPORTPOINT { get; set; }
|
||
/// <summary>
|
||
/// 下载时间 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_DOWNLOAD_DATE { get; set; }
|
||
}
|
||
#endregion
|
||
|
||
#region T_OWNERUNIT 的表明、字段名、字段描述
|
||
/// <summary>
|
||
/// T_OWNERUNIT_业主单位管理表 的字段类
|
||
/// </summary>
|
||
public class TableSchema_OWNERUNIT
|
||
{
|
||
/// <summary>
|
||
/// 序列名 (用于Oracle主键)
|
||
/// </summary>
|
||
public const string SequenceName = "seq_ownerunit";
|
||
/// <summary>
|
||
/// 表名
|
||
/// </summary>
|
||
public const string TableName = "T_OWNERUNIT";
|
||
/// <summary>
|
||
/// 表注释
|
||
/// </summary>
|
||
public const string Comment_TableName = "业主单位管理表";
|
||
/// <summary>
|
||
/// 主键
|
||
/// </summary>
|
||
public const string KeyFieldName = "OWNERUNIT_ID";
|
||
/// <summary>
|
||
/// 业主内码
|
||
/// </summary>
|
||
public const string OWNERUNIT_ID = "OWNERUNIT_ID";
|
||
/// <summary>
|
||
/// 父级内码
|
||
/// </summary>
|
||
public const string OWNERUNIT_PID = "OWNERUNIT_PID";
|
||
/// <summary>
|
||
/// 省份标识
|
||
/// </summary>
|
||
public const string PROVINCE_CODE = "PROVINCE_CODE";
|
||
/// <summary>
|
||
/// 业务省份标识
|
||
/// </summary>
|
||
public const string PROVINCE_BUSINESSCODE = "PROVINCE_BUSINESSCODE";
|
||
/// <summary>
|
||
/// 业主单位
|
||
/// </summary>
|
||
public const string OWNERUNIT_NAME = "OWNERUNIT_NAME";
|
||
/// <summary>
|
||
/// 业主简称
|
||
/// </summary>
|
||
public const string OWNERUNIT_EN = "OWNERUNIT_EN";
|
||
/// <summary>
|
||
/// 业主单位性质(1000:管理单位;2000:经营单位)
|
||
/// </summary>
|
||
public const string OWNERUNIT_NATURE = "OWNERUNIT_NATURE";
|
||
/// <summary>
|
||
/// 业主标识
|
||
/// </summary>
|
||
public const string OWNERUNIT_GUID = "OWNERUNIT_GUID";
|
||
/// <summary>
|
||
/// 排序字段
|
||
/// </summary>
|
||
public const string OWNERUNIT_INDEX = "OWNERUNIT_INDEX";
|
||
/// <summary>
|
||
/// 业主图标
|
||
/// </summary>
|
||
public const string OWNERUNIT_ICO = "OWNERUNIT_ICO";
|
||
/// <summary>
|
||
/// 有效状态
|
||
/// </summary>
|
||
public const string OWNERUNIT_STATE = "OWNERUNIT_STATE";
|
||
/// <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 OWNERUNIT_DESC = "OWNERUNIT_DESC";
|
||
/// <summary>
|
||
/// 业主单位是否支持积分功能
|
||
/// </summary>
|
||
public const string ISSUPPORTPOINT = "ISSUPPORTPOINT";
|
||
/// <summary>
|
||
/// 下载时间
|
||
/// </summary>
|
||
public const string DOWNLOAD_DATE = "DOWNLOAD_DATE";
|
||
/// <summary>
|
||
/// 业主内码
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_ID = "业主内码";
|
||
/// <summary>
|
||
/// 父级内码
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_PID = "父级内码";
|
||
/// <summary>
|
||
/// 省份标识
|
||
/// </summary>
|
||
public const string Comment_PROVINCE_CODE = "省份标识";
|
||
/// <summary>
|
||
/// 业务省份标识
|
||
/// </summary>
|
||
public const string Comment_PROVINCE_BUSINESSCODE = "业务省份标识";
|
||
/// <summary>
|
||
/// 业主单位
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_NAME = "业主单位";
|
||
/// <summary>
|
||
/// 业主简称
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_EN = "业主简称";
|
||
/// <summary>
|
||
/// 业主单位性质(1000:管理单位;2000:经营单位)
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_NATURE = "业主单位性质(1000:管理单位;2000:经营单位)";
|
||
/// <summary>
|
||
/// 业主标识
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_GUID = "业主标识";
|
||
/// <summary>
|
||
/// 排序字段
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_INDEX = "排序字段";
|
||
/// <summary>
|
||
/// 业主图标
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_ICO = "业主图标";
|
||
/// <summary>
|
||
/// 有效状态
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_STATE = "有效状态";
|
||
/// <summary>
|
||
/// 操作人员内码
|
||
/// </summary>
|
||
public const string Comment_STAFF_ID = "操作人员内码";
|
||
/// <summary>
|
||
/// 操作人员名称
|
||
/// </summary>
|
||
public const string Comment_STAFF_NAME = "操作人员名称";
|
||
/// <summary>
|
||
/// 操作时间
|
||
/// </summary>
|
||
public const string Comment_OPERATE_DATE = "操作时间";
|
||
/// <summary>
|
||
/// 备注
|
||
/// </summary>
|
||
public const string Comment_OWNERUNIT_DESC = "备注";
|
||
/// <summary>
|
||
/// 业主单位是否支持积分功能
|
||
/// </summary>
|
||
public const string Comment_ISSUPPORTPOINT = "业主单位是否支持积分功能";
|
||
/// <summary>
|
||
/// 下载时间
|
||
/// </summary>
|
||
public const string Comment_DOWNLOAD_DATE = "下载时间";
|
||
}
|
||
#endregion
|
||
}
|