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.
32 lines
838 B
C#
32 lines
838 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaterialTraceability.Entity.UpLoad
|
|
{
|
|
[SugarTable("base_alarminfo")]
|
|
public class AlarmInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键标识
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "objId", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int objId { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "alarmCode")]
|
|
public string alarmCode { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "alarmMessage")]
|
|
public string alarmMessage { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "alarmPropose")]
|
|
public string alarmPropose { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "remark")]
|
|
public string remark { get; set; }
|
|
}
|
|
}
|