Files
Web_AUTS_New_Prod/WebAPIServer/Models/TblUtsManageErrcode.cs
2025-11-20 14:08:17 +08:00

30 lines
616 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
namespace WebAPIServer.Models;
public partial class TblUtsManageErrcode
{
/// <summary>
/// 错误类型
/// </summary>
public string? ErrType { get; set; }
/// <summary>
/// 错误ID唯一值
/// </summary>
public string ErrCode { get; set; } = null!;
/// <summary>
/// 错误提示
/// </summary>
public string? ErrMsg { get; set; }
/// <summary>
/// 统计图表中对应的颜色
/// </summary>
public string ErrColor { get; set; } = null!;
public DateTime UpdateTime { get; set; }
}