2025-03-27 15:05:14 +08:00

260 lines
8.3 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.ExchangeData.Interface
{
#region T_CONNECTPOINT ICONNECTPOINT
/// <summary>
/// T_CONNECTPOINT 接口
/// </summary>
public interface ICONNECTPOINT
{
/// <summary>
/// CONNECTPOINT_ID
/// </summary>
System.Int64? CONNECTPOINT_ID { get; set; }
/// <summary>
/// CONNECTPOINT_ID 的加密字符串
/// </summary>
string CONNECTPOINT_ID_Encrypt { get; set; }
/// <summary>
/// MACHINECODE
/// </summary>
System.String MACHINECODE { get; set; }
/// <summary>
/// CONNECT_DATE
/// </summary>
System.DateTime? CONNECT_DATE { get; set; }
/// <summary>
/// CONNECT_IP
/// </summary>
System.String CONNECT_IP { get; set; }
/// <summary>
/// SERVERPARTCODE
/// </summary>
System.String SERVERPARTCODE { get; set; }
/// <summary>
/// SHOPCODE
/// </summary>
System.String SHOPCODE { get; set; }
/// <summary>
/// MACHINENAME
/// </summary>
System.String MACHINENAME { get; set; }
/// <summary>
/// CONTENT
/// </summary>
System.String CONTENT { get; set; }
/// <summary>
/// CURRAMOUNT
/// </summary>
System.Double? CURRAMOUNT { get; set; }
/// <summary>
/// CURRSELLCOUNT
/// </summary>
System.Int64? CURRSELLCOUNT { get; set; }
/// <summary>
/// CURRCOMMCOUNT
/// </summary>
System.Int64? CURRCOMMCOUNT { get; set; }
/// <summary>
/// CURRPRESON
/// </summary>
System.String CURRPRESON { get; set; }
/// <summary>
/// COMMODITYINFO
/// </summary>
System.String COMMODITYINFO { get; set; }
}
#endregion
#region T_CONNECTPOINT IModifyCONNECTPOINT
/// <summary>
/// T_CONNECTPOINT 接口
/// </summary>
public interface IModifyCONNECTPOINT
{
/// <summary>
/// CONNECTPOINT_ID 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CONNECTPOINT_ID { get; set; }
/// <summary>
/// MACHINECODE 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_MACHINECODE { get; set; }
/// <summary>
/// CONNECT_DATE 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CONNECT_DATE { get; set; }
/// <summary>
/// CONNECT_IP 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CONNECT_IP { get; set; }
/// <summary>
/// SERVERPARTCODE 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SERVERPARTCODE { get; set; }
/// <summary>
/// SHOPCODE 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SHOPCODE { get; set; }
/// <summary>
/// MACHINENAME 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_MACHINENAME { get; set; }
/// <summary>
/// CONTENT 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CONTENT { get; set; }
/// <summary>
/// CURRAMOUNT 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CURRAMOUNT { get; set; }
/// <summary>
/// CURRSELLCOUNT 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CURRSELLCOUNT { get; set; }
/// <summary>
/// CURRCOMMCOUNT 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CURRCOMMCOUNT { get; set; }
/// <summary>
/// CURRPRESON 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CURRPRESON { get; set; }
/// <summary>
/// COMMODITYINFO 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COMMODITYINFO { get; set; }
}
#endregion
#region T_CONNECTPOINT
/// <summary>
/// T_CONNECTPOINT_ 的字段类
/// </summary>
public class TableSchema_CONNECTPOINT
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_connectpoint";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_CONNECTPOINT";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "CONNECTPOINT_ID";
/// <summary>
/// CONNECTPOINT_ID
/// </summary>
public const string CONNECTPOINT_ID = "CONNECTPOINT_ID";
/// <summary>
/// MACHINECODE
/// </summary>
public const string MACHINECODE = "MACHINECODE";
/// <summary>
/// CONNECT_DATE
/// </summary>
public const string CONNECT_DATE = "CONNECT_DATE";
/// <summary>
/// CONNECT_IP
/// </summary>
public const string CONNECT_IP = "CONNECT_IP";
/// <summary>
/// SERVERPARTCODE
/// </summary>
public const string SERVERPARTCODE = "SERVERPARTCODE";
/// <summary>
/// SHOPCODE
/// </summary>
public const string SHOPCODE = "SHOPCODE";
/// <summary>
/// MACHINENAME
/// </summary>
public const string MACHINENAME = "MACHINENAME";
/// <summary>
/// CONTENT
/// </summary>
public const string CONTENT = "CONTENT";
/// <summary>
/// CURRAMOUNT
/// </summary>
public const string CURRAMOUNT = "CURRAMOUNT";
/// <summary>
/// CURRSELLCOUNT
/// </summary>
public const string CURRSELLCOUNT = "CURRSELLCOUNT";
/// <summary>
/// CURRCOMMCOUNT
/// </summary>
public const string CURRCOMMCOUNT = "CURRCOMMCOUNT";
/// <summary>
/// CURRPRESON
/// </summary>
public const string CURRPRESON = "CURRPRESON";
/// <summary>
/// COMMODITYINFO
/// </summary>
public const string COMMODITYINFO = "COMMODITYINFO";
/// <summary>
/// CONNECTPOINT_ID
/// </summary>
public const string Comment_CONNECTPOINT_ID = "CONNECTPOINT_ID";
/// <summary>
/// MACHINECODE
/// </summary>
public const string Comment_MACHINECODE = "MACHINECODE";
/// <summary>
/// CONNECT_DATE
/// </summary>
public const string Comment_CONNECT_DATE = "CONNECT_DATE";
/// <summary>
/// CONNECT_IP
/// </summary>
public const string Comment_CONNECT_IP = "CONNECT_IP";
/// <summary>
/// SERVERPARTCODE
/// </summary>
public const string Comment_SERVERPARTCODE = "SERVERPARTCODE";
/// <summary>
/// SHOPCODE
/// </summary>
public const string Comment_SHOPCODE = "SHOPCODE";
/// <summary>
/// MACHINENAME
/// </summary>
public const string Comment_MACHINENAME = "MACHINENAME";
/// <summary>
/// CONTENT
/// </summary>
public const string Comment_CONTENT = "CONTENT";
/// <summary>
/// CURRAMOUNT
/// </summary>
public const string Comment_CURRAMOUNT = "CURRAMOUNT";
/// <summary>
/// CURRSELLCOUNT
/// </summary>
public const string Comment_CURRSELLCOUNT = "CURRSELLCOUNT";
/// <summary>
/// CURRCOMMCOUNT
/// </summary>
public const string Comment_CURRCOMMCOUNT = "CURRCOMMCOUNT";
/// <summary>
/// CURRPRESON
/// </summary>
public const string Comment_CURRPRESON = "CURRPRESON";
/// <summary>
/// COMMODITYINFO
/// </summary>
public const string Comment_COMMODITYINFO = "COMMODITYINFO";
}
#endregion
}