You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
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
|
|
{
|
|
/// <summary>
|
|
/// 两位ID 字符串
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 数据录入提示
|
|
/// </summary>
|
|
public string? DataInputPrompt { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报关单提示
|
|
/// </summary>
|
|
public string? ReportPrompt { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报告单背景色
|
|
/// </summary>
|
|
public int ReportBackgroundColor { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报关单字体色
|
|
/// </summary>
|
|
public int ReportFontColor { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据录入背景色
|
|
/// </summary>
|
|
public int DataInputBackgroundColor { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据录入字体色
|
|
/// </summary>
|
|
public int DataInputFontColor { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
public int DisplayOrder { get; set; }
|
|
|
|
|
|
}
|
|
}
|