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

132 lines
4.2 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.Coop.Merchant.Interface
{
#region T_RTCOOPMERCHANTS IRTCOOPMERCHANTS
/// <summary>
/// T_RTCOOPMERCHANTS 接口
/// </summary>
public interface IRTCOOPMERCHANTS
{
/// <summary>
/// 内码
/// </summary>
System.Int32? RTCOOPMERCHANTS_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string RTCOOPMERCHANTS_ID_Encrypt { get; set; }
/// <summary>
/// 经营商户内码
/// </summary>
System.Int32? COOPMERCHANTS_ID { get; set; }
/// <summary>
/// 经营业态
/// </summary>
System.Int32? BUSINESS_TRADE { get; set; }
/// <summary>
/// 经营品牌
/// </summary>
System.Int32? BUSINESS_BRAND { get; set; }
/// <summary>
/// 操作时间
/// </summary>
System.DateTime? OPERATE_DATE { get; set; }
}
#endregion
#region T_RTCOOPMERCHANTS IModifyRTCOOPMERCHANTS
/// <summary>
/// T_RTCOOPMERCHANTS 接口
/// </summary>
public interface IModifyRTCOOPMERCHANTS
{
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_RTCOOPMERCHANTS_ID { get; set; }
/// <summary>
/// 经营商户内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COOPMERCHANTS_ID { get; set; }
/// <summary>
/// 经营业态 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_BUSINESS_TRADE { get; set; }
/// <summary>
/// 经营品牌 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_BUSINESS_BRAND { get; set; }
/// <summary>
/// 操作时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OPERATE_DATE { get; set; }
}
#endregion
#region T_RTCOOPMERCHANTS
/// <summary>
/// T_RTCOOPMERCHANTS_经营商户品牌关联关系表 的字段类
/// </summary>
public class TableSchema_RTCOOPMERCHANTS
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_rtcoopmerchants";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_RTCOOPMERCHANTS";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "经营商户品牌关联关系表";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "RTCOOPMERCHANTS_ID";
/// <summary>
/// 内码
/// </summary>
public const string RTCOOPMERCHANTS_ID = "RTCOOPMERCHANTS_ID";
/// <summary>
/// 经营商户内码
/// </summary>
public const string COOPMERCHANTS_ID = "COOPMERCHANTS_ID";
/// <summary>
/// 经营业态
/// </summary>
public const string BUSINESS_TRADE = "BUSINESS_TRADE";
/// <summary>
/// 经营品牌
/// </summary>
public const string BUSINESS_BRAND = "BUSINESS_BRAND";
/// <summary>
/// 操作时间
/// </summary>
public const string OPERATE_DATE = "OPERATE_DATE";
/// <summary>
/// 内码
/// </summary>
public const string Comment_RTCOOPMERCHANTS_ID = "内码";
/// <summary>
/// 经营商户内码
/// </summary>
public const string Comment_COOPMERCHANTS_ID = "经营商户内码";
/// <summary>
/// 经营业态
/// </summary>
public const string Comment_BUSINESS_TRADE = "经营业态";
/// <summary>
/// 经营品牌
/// </summary>
public const string Comment_BUSINESS_BRAND = "经营品牌";
/// <summary>
/// 操作时间
/// </summary>
public const string Comment_OPERATE_DATE = "操作时间";
}
#endregion
}