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.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/FreeDb/WarnTable.cs

53 lines
1.3 KiB
C#

using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.FreeDb
{
[Table(Name = "WarnTable")]
public class WarnTable
{
/// <summary>
/// 主键
/// </summary>
[Column(IsPrimary = true, IsIdentity = false)]
public long Id { get; set; }
public int AlarmId { get; set; }
public string CnInfo { get; set; }
public string OtherInfo { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
public int Num { get; set; }
public int Status { get; set; }
}
[Table(Name = "WarnTableInfo")]
public class WarnTableInfo
{
/// <summary>
/// 主键
/// </summary>
[Column(IsPrimary = true, IsIdentity = true)]
public int Id { get; set; }
public int AlarmId { get; set; }
public string CnInfo { get; set; }
public string OtherInfo { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
public int Num { get; set; }
public int Status { get; set; }
}
}