generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
775 B
C#
37 lines
775 B
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sln.Iot.Repository.dao
|
|
{
|
|
/// <summary>
|
|
/// 炉错误列表
|
|
/// </summary>
|
|
public class OvenError
|
|
{
|
|
/// <summary>
|
|
/// 错误GUID
|
|
/// </summary>
|
|
[PrimaryKey]
|
|
public string ErrorGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 错误名称
|
|
/// </summary>
|
|
public string ErrorName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 错误名称(中文)
|
|
/// </summary>
|
|
public string CNErrorName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 错误代码
|
|
/// </summary>
|
|
public string ErrorCode { get; set; }
|
|
}
|
|
}
|