2025-08-25 09:56:57 +08:00
|
|
|
|
using APT.BaseData.Domain.Enums;
|
|
|
|
|
|
using APT.Infrastructure.Core;
|
|
|
|
|
|
using APT.MS.Domain.Enums;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
|
|
namespace APT.MS.Domain.Entities.PC
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 四色图配置信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("四色图配置信息")]
|
|
|
|
|
|
public class T_PC_INFO : MesEntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("名称")]
|
|
|
|
|
|
[DataFieldLength(200)]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
public string NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 背景图路径 必填
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("背景图路径")]
|
|
|
|
|
|
[DataFieldLength(200)]
|
|
|
|
|
|
public string FILE_PATH { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 图片长 默认1500
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("图片长")]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
public int WIDTH { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 图片宽 默认 1000
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("图片宽")]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
public int HEIGHT { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 描述
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("描述")]
|
|
|
|
|
|
[DataFieldLength(350)]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
public string DESCRIBE { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 图例填充色 颜色 或者rgb 非手动的话 API得自助更新值
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("填充色")]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
public string RGBCOLOR_TL { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 图例透明度(例:0.2)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("透明度")]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
public decimal OPACITY_TL { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 背景图
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("背景图")]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
public virtual ICollection<T_PC_INFO_FILE> Nav_Files { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 色块
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("色块")]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
public virtual ICollection<T_PC_INFO_COLOR> Nav_Colors { get; set; }
|
2025-09-22 09:39:18 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 四色图顺序
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("四色图顺序")]
|
|
|
|
|
|
public int ZDEX { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|