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_RTOWNERUNIT IRTOWNERUNIT
/// <summary>
/// T_RTOWNERUNIT 接口
/// </summary>
public interface IRTOWNERUNIT
{
/// <summary>
/// 内码
/// </summary>
System.Int32? RTOWNERUNIT_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string RTOWNERUNIT_ID_Encrypt { get; set; }
/// <summary>
/// 业主单位内码
/// </summary>
System.Int32? OWNERUNIT_ID { get; set; }
/// <summary>
/// 省份编码
/// </summary>
System.Int32? PROVINCE_CODE { get; set; }
/// <summary>
/// 业主单位名称
/// </summary>
System.String OWNERUNIT_NAME { get; set; }
/// <summary>
/// 业主单位GUID
/// </summary>
System.String OWNERUNIT_GUID { get; set; }
/// <summary>
/// 账号内码
/// </summary>
System.Int32? USER_ID { get; set; }
/// <summary>
/// 用户名称
/// </summary>
System.String USER_NAME { get; set; }
/// <summary>
/// 用户账号
/// </summary>
System.String USER_PASSPORT { get; set; }
/// <summary>
/// 微信公众号人员内码
/// </summary>
System.Int32? RTWECHATPUSH_ID { get; set; }
/// <summary>
/// 微信公众号人员昵称
/// </summary>
System.String WECHATPUSH_NICKNAME { get; set; }
/// <summary>
/// 微信小程序人员内码
/// </summary>
System.Int32? RTWECHATAPP_ID { get; set; }
/// <summary>
/// 微信小程序人员昵称
/// </summary>
System.String WECHATAPP_NICKNAME { 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; }
}
#endregion
#region T_RTOWNERUNIT IModifyRTOWNERUNIT
/// <summary>
/// T_RTOWNERUNIT 接口
/// </summary>
public interface IModifyRTOWNERUNIT
{
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_RTOWNERUNIT_ID { get; set; }
/// <summary>
/// 业主单位内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_ID { get; set; }
/// <summary>
/// 省份编码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_PROVINCE_CODE { get; set; }
/// <summary>
/// 业主单位名称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_NAME { get; set; }
/// <summary>
/// 业主单位GUID 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_GUID { get; set; }
/// <summary>
/// 账号内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_USER_ID { get; set; }
/// <summary>
/// 用户名称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_USER_NAME { get; set; }
/// <summary>
/// 用户账号 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_USER_PASSPORT { get; set; }
/// <summary>
/// 微信公众号人员内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_RTWECHATPUSH_ID { get; set; }
/// <summary>
/// 微信公众号人员昵称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_WECHATPUSH_NICKNAME { get; set; }
/// <summary>
/// 微信小程序人员内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_RTWECHATAPP_ID { get; set; }
/// <summary>
/// 微信小程序人员昵称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_WECHATAPP_NICKNAME { 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; }
}
#endregion
#region T_RTOWNERUNIT
/// <summary>
/// T_RTOWNERUNIT_业主单位账户关联关系表 的字段类
/// </summary>
public class TableSchema_RTOWNERUNIT
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_rtownerunit";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_RTOWNERUNIT";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "业主单位账户关联关系表";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "RTOWNERUNIT_ID";
/// <summary>
/// 内码
/// </summary>
public const string RTOWNERUNIT_ID = "RTOWNERUNIT_ID";
/// <summary>
/// 业主单位内码
/// </summary>
public const string OWNERUNIT_ID = "OWNERUNIT_ID";
/// <summary>
/// 省份编码
/// </summary>
public const string PROVINCE_CODE = "PROVINCE_CODE";
/// <summary>
/// 业主单位名称
/// </summary>
public const string OWNERUNIT_NAME = "OWNERUNIT_NAME";
/// <summary>
/// 业主单位GUID
/// </summary>
public const string OWNERUNIT_GUID = "OWNERUNIT_GUID";
/// <summary>
/// 账号内码
/// </summary>
public const string USER_ID = "USER_ID";
/// <summary>
/// 用户名称
/// </summary>
public const string USER_NAME = "USER_NAME";
/// <summary>
/// 用户账号
/// </summary>
public const string USER_PASSPORT = "USER_PASSPORT";
/// <summary>
/// 微信公众号人员内码
/// </summary>
public const string RTWECHATPUSH_ID = "RTWECHATPUSH_ID";
/// <summary>
/// 微信公众号人员昵称
/// </summary>
public const string WECHATPUSH_NICKNAME = "WECHATPUSH_NICKNAME";
/// <summary>
/// 微信小程序人员内码
/// </summary>
public const string RTWECHATAPP_ID = "RTWECHATAPP_ID";
/// <summary>
/// 微信小程序人员昵称
/// </summary>
public const string WECHATAPP_NICKNAME = "WECHATAPP_NICKNAME";
/// <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 Comment_RTOWNERUNIT_ID = "内码";
/// <summary>
/// 业主单位内码
/// </summary>
public const string Comment_OWNERUNIT_ID = "业主单位内码";
/// <summary>
/// 省份编码
/// </summary>
public const string Comment_PROVINCE_CODE = "省份编码";
/// <summary>
/// 业主单位名称
/// </summary>
public const string Comment_OWNERUNIT_NAME = "业主单位名称";
/// <summary>
/// 业主单位GUID
/// </summary>
public const string Comment_OWNERUNIT_GUID = "业主单位GUID";
/// <summary>
/// 账号内码
/// </summary>
public const string Comment_USER_ID = "账号内码";
/// <summary>
/// 用户名称
/// </summary>
public const string Comment_USER_NAME = "用户名称";
/// <summary>
/// 用户账号
/// </summary>
public const string Comment_USER_PASSPORT = "用户账号";
/// <summary>
/// 微信公众号人员内码
/// </summary>
public const string Comment_RTWECHATPUSH_ID = "微信公众号人员内码";
/// <summary>
/// 微信公众号人员昵称
/// </summary>
public const string Comment_WECHATPUSH_NICKNAME = "微信公众号人员昵称";
/// <summary>
/// 微信小程序人员内码
/// </summary>
public const string Comment_RTWECHATAPP_ID = "微信小程序人员内码";
/// <summary>
/// 微信小程序人员昵称
/// </summary>
public const string Comment_WECHATAPP_NICKNAME = "微信小程序人员昵称";
/// <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 = "备注";
}
#endregion
}