using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Text; namespace Shentun.Peis.ResultStatuses { public class ResultStatusDto { /// /// 两位ID 字符串 /// public string Id { get; set; } /// /// 名称 /// public string DisplayName { get; set; } = null!; /// /// 数据录入提示 /// public string? DataInputPrompt { get; set; } /// /// 报关单提示 /// public string? ReportPrompt { get; set; } /// /// 报告单背景色 /// public int ReportBackgroundColor { get; set; } /// /// 报关单字体色 /// public int ReportFontColor { get; set; } /// /// 数据录入背景色 /// public int DataInputBackgroundColor { get; set; } /// /// 数据录入字体色 /// public int DataInputFontColor { get; set; } /// /// 排序 /// public int DisplayOrder { get; set; } } }