38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
|
|
using APT.Infrastructure.Api;
|
|||
|
|
using APT.Infrastructure.Utility;
|
|||
|
|
using System;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using APT.Infrastructure.Core;
|
|||
|
|
namespace APT.BaseData.Domain.Entities
|
|||
|
|
{
|
|||
|
|
[Redis("MQTT_CONFIG_ID")]
|
|||
|
|
public partial class T_PF_MQTT_CONFIG_THEME : MesEntityBase
|
|||
|
|
{
|
|||
|
|
[Description("MQ<4D><51><EFBFBD><EFBFBD>ID")]
|
|||
|
|
[DataFieldForeignKey("Nav_MqttConfig", "Nav_MqttConfigTheme")]
|
|||
|
|
public Guid MQTT_CONFIG_ID { get; set; }
|
|||
|
|
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD>")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[DataFieldLength(20)]
|
|||
|
|
public string NAME { get; set; }
|
|||
|
|
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public bool IS_PUBLISH { get; set; }
|
|||
|
|
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[EnumName("PFThemeTypeEnum")]
|
|||
|
|
public int THEME_TYPE { get; set; }
|
|||
|
|
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>MQTT<54><54><EFBFBD>ñ<EFBFBD>")]
|
|||
|
|
public virtual T_PF_MQTT_CONFIG Nav_MqttConfig { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|