dep_deliver
杨威 5 months ago
parent 239c2fe4b7
commit aa68659a2a

@ -0,0 +1,52 @@
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; }
}
}

@ -286,6 +286,7 @@
<Compile Include="FreeDb\DBEntity\Report\Report_WetMixer_Detail.cs" />
<Compile Include="FreeDb\FreeSqlUnit.cs" />
<Compile Include="FreeDb\SuSong.cs" />
<Compile Include="FreeDb\WarnTable.cs" />
<Compile Include="InterfaceDocking\DockingEntity\JsonReturnEntity.cs" />
<Compile Include="InterfaceDocking\DockingEntity\MaterialPlanSyncEntity.cs" />
<Compile Include="InterfaceDocking\DockingEntity\TankDeviceStateSyncEntity.cs" />

Loading…
Cancel
Save