using APT.BaseData.Domain.Entities.BD; using APT.BaseData.Domain.Entities.FM; using APT.BaseData.Domain.Enums.PF; using APT.Infrastructure.Core; using System; using System.Collections.Generic; using System.ComponentModel; namespace APT.BaseData.Domain.Entities { /// /// BI播放轮播配置 /// [Description("图片视频")] public partial class T_PF_BIPLAY_SET : MesEntityBase { /// /// 自动播放 /// [Description("自动播放")] public bool V_ISAUTO { get; set; } /// /// 循环播放 /// [Description("循环播放")] public bool V_ISRE { get; set; } /// /// 静音播放 /// [Description("静音播放")] public bool V_ISSILENT { get; set; } /// /// 显示控制器 /// [Description("显示控制器")] public bool V_ISSHOWCONTROL { get; set; } /// /// 轮播间隔 秒 /// [Description("轮播间隔")] public decimal IMG_TIMESPAN { get; set; } /// /// 循环播放 /// [Description("循环播放")] public bool IMG_ISRE { get; set; } /// /// 过渡效果 0 10 ... /// [Description("过渡效果")] public EFFECTEnum IMG_EFFECT { get; set; } } }