132 lines
4.1 KiB
C#
132 lines
4.1 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.ExchangeData.Interface
|
|
{
|
|
#region T_SEARCHCOMM ISEARCHCOMM 接口
|
|
/// <summary>
|
|
/// T_SEARCHCOMM 接口
|
|
/// </summary>
|
|
public interface ISEARCHCOMM
|
|
{
|
|
/// <summary>
|
|
/// SEARCHCOMM_ID
|
|
/// </summary>
|
|
System.Int32? SEARCHCOMM_ID { get; set; }
|
|
/// <summary>
|
|
/// SEARCHCOMM_ID 的加密字符串
|
|
/// </summary>
|
|
string SEARCHCOMM_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// COMMODITY_CODE
|
|
/// </summary>
|
|
System.String COMMODITY_CODE { get; set; }
|
|
/// <summary>
|
|
/// COMMODITY_BARCODE
|
|
/// </summary>
|
|
System.String COMMODITY_BARCODE { get; set; }
|
|
/// <summary>
|
|
/// COMMODITY_DATE
|
|
/// </summary>
|
|
System.DateTime? COMMODITY_DATE { get; set; }
|
|
/// <summary>
|
|
/// SERVERPART_CODE
|
|
/// </summary>
|
|
System.String SERVERPART_CODE { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_SEARCHCOMM IModifySEARCHCOMM 接口
|
|
/// <summary>
|
|
/// T_SEARCHCOMM 接口
|
|
/// </summary>
|
|
public interface IModifySEARCHCOMM
|
|
{
|
|
/// <summary>
|
|
/// SEARCHCOMM_ID 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SEARCHCOMM_ID { get; set; }
|
|
/// <summary>
|
|
/// COMMODITY_CODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_COMMODITY_CODE { get; set; }
|
|
/// <summary>
|
|
/// COMMODITY_BARCODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_COMMODITY_BARCODE { get; set; }
|
|
/// <summary>
|
|
/// COMMODITY_DATE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_COMMODITY_DATE { get; set; }
|
|
/// <summary>
|
|
/// SERVERPART_CODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SERVERPART_CODE { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_SEARCHCOMM 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_SEARCHCOMM_ 的字段类
|
|
/// </summary>
|
|
public class TableSchema_SEARCHCOMM
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_searchcomm";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_SEARCHCOMM";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "SEARCHCOMM_ID";
|
|
/// <summary>
|
|
/// SEARCHCOMM_ID
|
|
/// </summary>
|
|
public const string SEARCHCOMM_ID = "SEARCHCOMM_ID";
|
|
/// <summary>
|
|
/// COMMODITY_CODE
|
|
/// </summary>
|
|
public const string COMMODITY_CODE = "COMMODITY_CODE";
|
|
/// <summary>
|
|
/// COMMODITY_BARCODE
|
|
/// </summary>
|
|
public const string COMMODITY_BARCODE = "COMMODITY_BARCODE";
|
|
/// <summary>
|
|
/// COMMODITY_DATE
|
|
/// </summary>
|
|
public const string COMMODITY_DATE = "COMMODITY_DATE";
|
|
/// <summary>
|
|
/// SERVERPART_CODE
|
|
/// </summary>
|
|
public const string SERVERPART_CODE = "SERVERPART_CODE";
|
|
/// <summary>
|
|
/// SEARCHCOMM_ID
|
|
/// </summary>
|
|
public const string Comment_SEARCHCOMM_ID = "SEARCHCOMM_ID";
|
|
/// <summary>
|
|
/// COMMODITY_CODE
|
|
/// </summary>
|
|
public const string Comment_COMMODITY_CODE = "COMMODITY_CODE";
|
|
/// <summary>
|
|
/// COMMODITY_BARCODE
|
|
/// </summary>
|
|
public const string Comment_COMMODITY_BARCODE = "COMMODITY_BARCODE";
|
|
/// <summary>
|
|
/// COMMODITY_DATE
|
|
/// </summary>
|
|
public const string Comment_COMMODITY_DATE = "COMMODITY_DATE";
|
|
/// <summary>
|
|
/// SERVERPART_CODE
|
|
/// </summary>
|
|
public const string Comment_SERVERPART_CODE = "SERVERPART_CODE";
|
|
}
|
|
#endregion
|
|
}
|