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

148 lines
4.6 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.ExchangeData.Interface
{
#region T_TIMECONTROL ITIMECONTROL
/// <summary>
/// T_TIMECONTROL 接口
/// </summary>
public interface ITIMECONTROL
{
/// <summary>
/// TIMECONTROL_ID
/// </summary>
System.Int64? TIMECONTROL_ID { get; set; }
/// <summary>
/// TIMECONTROL_ID 的加密字符串
/// </summary>
string TIMECONTROL_ID_Encrypt { get; set; }
/// <summary>
/// SERVERPARTCODE
/// </summary>
System.String SERVERPARTCODE { get; set; }
/// <summary>
/// SHOPCODE
/// </summary>
System.String SHOPCODE { get; set; }
/// <summary>
/// MACHINE_MACADDRESS
/// </summary>
System.String MACHINE_MACADDRESS { get; set; }
/// <summary>
/// CONTROL_NAME
/// </summary>
System.String CONTROL_NAME { get; set; }
/// <summary>
/// TIMEINTERVAL
/// </summary>
System.Int64? TIMEINTERVAL { get; set; }
}
#endregion
#region T_TIMECONTROL IModifyTIMECONTROL
/// <summary>
/// T_TIMECONTROL 接口
/// </summary>
public interface IModifyTIMECONTROL
{
/// <summary>
/// TIMECONTROL_ID 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_TIMECONTROL_ID { get; set; }
/// <summary>
/// SERVERPARTCODE 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SERVERPARTCODE { get; set; }
/// <summary>
/// SHOPCODE 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SHOPCODE { get; set; }
/// <summary>
/// MACHINE_MACADDRESS 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_MACHINE_MACADDRESS { get; set; }
/// <summary>
/// CONTROL_NAME 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CONTROL_NAME { get; set; }
/// <summary>
/// TIMEINTERVAL 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_TIMEINTERVAL { get; set; }
}
#endregion
#region T_TIMECONTROL
/// <summary>
/// T_TIMECONTROL_状态参数 的字段类
/// </summary>
public class TableSchema_TIMECONTROL
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_timecontrol";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_TIMECONTROL";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "状态参数";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "TIMECONTROL_ID";
/// <summary>
/// TIMECONTROL_ID
/// </summary>
public const string TIMECONTROL_ID = "TIMECONTROL_ID";
/// <summary>
/// SERVERPARTCODE
/// </summary>
public const string SERVERPARTCODE = "SERVERPARTCODE";
/// <summary>
/// SHOPCODE
/// </summary>
public const string SHOPCODE = "SHOPCODE";
/// <summary>
/// MACHINE_MACADDRESS
/// </summary>
public const string MACHINE_MACADDRESS = "MACHINE_MACADDRESS";
/// <summary>
/// CONTROL_NAME
/// </summary>
public const string CONTROL_NAME = "CONTROL_NAME";
/// <summary>
/// TIMEINTERVAL
/// </summary>
public const string TIMEINTERVAL = "TIMEINTERVAL";
/// <summary>
/// TIMECONTROL_ID
/// </summary>
public const string Comment_TIMECONTROL_ID = "TIMECONTROL_ID";
/// <summary>
/// SERVERPARTCODE
/// </summary>
public const string Comment_SERVERPARTCODE = "SERVERPARTCODE";
/// <summary>
/// SHOPCODE
/// </summary>
public const string Comment_SHOPCODE = "SHOPCODE";
/// <summary>
/// MACHINE_MACADDRESS
/// </summary>
public const string Comment_MACHINE_MACADDRESS = "MACHINE_MACADDRESS";
/// <summary>
/// CONTROL_NAME
/// </summary>
public const string Comment_CONTROL_NAME = "CONTROL_NAME";
/// <summary>
/// TIMEINTERVAL
/// </summary>
public const string Comment_TIMEINTERVAL = "TIMEINTERVAL";
}
#endregion
}