using SQLite; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sln.Iot.Repository.dao { /// /// 真空箱2错误列表 /// public class Vacuum2Error { /// /// 错误GUID /// [PrimaryKey] public string ErrorGuid { get; set; } /// /// 错误名称 /// public string ErrorName { get; set; } /// /// 错误名称(中文) /// public string CNErrorName { get; set; } /// /// 错误代码 /// public string ErrorCode { get; set; } } }