180 lines
5.5 KiB
C#
180 lines
5.5 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.ExchangeData.Interface
|
|
{
|
|
#region T_HOTKEYSET_EX IHOTKEYSET_EX 接口
|
|
/// <summary>
|
|
/// T_HOTKEYSET_EX 接口
|
|
/// </summary>
|
|
public interface IHOTKEYSET_EX
|
|
{
|
|
/// <summary>
|
|
/// HOTKEYSET_EX_ID
|
|
/// </summary>
|
|
System.Int32? HOTKEYSET_EX_ID { get; set; }
|
|
/// <summary>
|
|
/// HOTKEYSET_EX_ID 的加密字符串
|
|
/// </summary>
|
|
string HOTKEYSET_EX_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// SERVERPARTCODE
|
|
/// </summary>
|
|
System.String SERVERPARTCODE { get; set; }
|
|
/// <summary>
|
|
/// COMMODITY_BARCODE
|
|
/// </summary>
|
|
System.String COMMODITY_BARCODE { get; set; }
|
|
/// <summary>
|
|
/// HOTKEY
|
|
/// </summary>
|
|
System.String HOTKEY { get; set; }
|
|
/// <summary>
|
|
/// BUSINESSTYPE
|
|
/// </summary>
|
|
System.Int32? BUSINESSTYPE { get; set; }
|
|
/// <summary>
|
|
/// DOWNLOADDATE
|
|
/// </summary>
|
|
System.DateTime? DOWNLOADDATE { get; set; }
|
|
/// <summary>
|
|
/// FLAG
|
|
/// </summary>
|
|
System.Int16? FLAG { get; set; }
|
|
/// <summary>
|
|
/// VALID
|
|
/// </summary>
|
|
System.Int16? VALID { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_HOTKEYSET_EX IModifyHOTKEYSET_EX 接口
|
|
/// <summary>
|
|
/// T_HOTKEYSET_EX 接口
|
|
/// </summary>
|
|
public interface IModifyHOTKEYSET_EX
|
|
{
|
|
/// <summary>
|
|
/// HOTKEYSET_EX_ID 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_HOTKEYSET_EX_ID { get; set; }
|
|
/// <summary>
|
|
/// SERVERPARTCODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SERVERPARTCODE { get; set; }
|
|
/// <summary>
|
|
/// COMMODITY_BARCODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_COMMODITY_BARCODE { get; set; }
|
|
/// <summary>
|
|
/// HOTKEY 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_HOTKEY { get; set; }
|
|
/// <summary>
|
|
/// BUSINESSTYPE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_BUSINESSTYPE { get; set; }
|
|
/// <summary>
|
|
/// DOWNLOADDATE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_DOWNLOADDATE { get; set; }
|
|
/// <summary>
|
|
/// FLAG 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_FLAG { get; set; }
|
|
/// <summary>
|
|
/// VALID 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_VALID { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_HOTKEYSET_EX 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_HOTKEYSET_EX_ 的字段类
|
|
/// </summary>
|
|
public class TableSchema_HOTKEYSET_EX
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_hotkeyset_ex";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_HOTKEYSET_EX";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "HOTKEYSET_EX_ID";
|
|
/// <summary>
|
|
/// HOTKEYSET_EX_ID
|
|
/// </summary>
|
|
public const string HOTKEYSET_EX_ID = "HOTKEYSET_EX_ID";
|
|
/// <summary>
|
|
/// SERVERPARTCODE
|
|
/// </summary>
|
|
public const string SERVERPARTCODE = "SERVERPARTCODE";
|
|
/// <summary>
|
|
/// COMMODITY_BARCODE
|
|
/// </summary>
|
|
public const string COMMODITY_BARCODE = "COMMODITY_BARCODE";
|
|
/// <summary>
|
|
/// HOTKEY
|
|
/// </summary>
|
|
public const string HOTKEY = "HOTKEY";
|
|
/// <summary>
|
|
/// BUSINESSTYPE
|
|
/// </summary>
|
|
public const string BUSINESSTYPE = "BUSINESSTYPE";
|
|
/// <summary>
|
|
/// DOWNLOADDATE
|
|
/// </summary>
|
|
public const string DOWNLOADDATE = "DOWNLOADDATE";
|
|
/// <summary>
|
|
/// FLAG
|
|
/// </summary>
|
|
public const string FLAG = "FLAG";
|
|
/// <summary>
|
|
/// VALID
|
|
/// </summary>
|
|
public const string VALID = "VALID";
|
|
/// <summary>
|
|
/// HOTKEYSET_EX_ID
|
|
/// </summary>
|
|
public const string Comment_HOTKEYSET_EX_ID = "HOTKEYSET_EX_ID";
|
|
/// <summary>
|
|
/// SERVERPARTCODE
|
|
/// </summary>
|
|
public const string Comment_SERVERPARTCODE = "SERVERPARTCODE";
|
|
/// <summary>
|
|
/// COMMODITY_BARCODE
|
|
/// </summary>
|
|
public const string Comment_COMMODITY_BARCODE = "COMMODITY_BARCODE";
|
|
/// <summary>
|
|
/// HOTKEY
|
|
/// </summary>
|
|
public const string Comment_HOTKEY = "HOTKEY";
|
|
/// <summary>
|
|
/// BUSINESSTYPE
|
|
/// </summary>
|
|
public const string Comment_BUSINESSTYPE = "BUSINESSTYPE";
|
|
/// <summary>
|
|
/// DOWNLOADDATE
|
|
/// </summary>
|
|
public const string Comment_DOWNLOADDATE = "DOWNLOADDATE";
|
|
/// <summary>
|
|
/// FLAG
|
|
/// </summary>
|
|
public const string Comment_FLAG = "FLAG";
|
|
/// <summary>
|
|
/// VALID
|
|
/// </summary>
|
|
public const string Comment_VALID = "VALID";
|
|
}
|
|
#endregion
|
|
}
|