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

180 lines
5.5 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.Coop.Merchant.Interface
{
#region T_RTUSER IRTUSER
/// <summary>
/// T_RTUSER 接口
/// </summary>
public interface IRTUSER
{
/// <summary>
/// 内码
/// </summary>
System.Int32? RTUSER_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string RTUSER_ID_Encrypt { get; set; }
/// <summary>
/// 商户内码
/// </summary>
System.Int32? MERCHANTS_ID { get; set; }
/// <summary>
/// 会员内码
/// </summary>
System.Int32? MEMBERSHIP_ID { get; set; }
/// <summary>
/// 账户内码
/// </summary>
System.Int32? USER_ID { 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 RTUSER_DESC { get; set; }
}
#endregion
#region T_RTUSER IModifyRTUSER
/// <summary>
/// T_RTUSER 接口
/// </summary>
public interface IModifyRTUSER
{
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_RTUSER_ID { get; set; }
/// <summary>
/// 商户内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_MERCHANTS_ID { get; set; }
/// <summary>
/// 会员内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_MEMBERSHIP_ID { get; set; }
/// <summary>
/// 账户内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_USER_ID { 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_RTUSER_DESC { get; set; }
}
#endregion
#region T_RTUSER
/// <summary>
/// T_RTUSER_会员商户关联关系表 的字段类
/// </summary>
public class TableSchema_RTUSER
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_rtuser";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_RTUSER";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "会员商户关联关系表";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "RTUSER_ID";
/// <summary>
/// 内码
/// </summary>
public const string RTUSER_ID = "RTUSER_ID";
/// <summary>
/// 商户内码
/// </summary>
public const string MERCHANTS_ID = "MERCHANTS_ID";
/// <summary>
/// 会员内码
/// </summary>
public const string MEMBERSHIP_ID = "MEMBERSHIP_ID";
/// <summary>
/// 账户内码
/// </summary>
public const string USER_ID = "USER_ID";
/// <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 RTUSER_DESC = "RTUSER_DESC";
/// <summary>
/// 内码
/// </summary>
public const string Comment_RTUSER_ID = "内码";
/// <summary>
/// 商户内码
/// </summary>
public const string Comment_MERCHANTS_ID = "商户内码";
/// <summary>
/// 会员内码
/// </summary>
public const string Comment_MEMBERSHIP_ID = "会员内码";
/// <summary>
/// 账户内码
/// </summary>
public const string Comment_USER_ID = "账户内码";
/// <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_RTUSER_DESC = "备注";
}
#endregion
}