增加一些功能,比如 修正重启后,队列消费会报错的问题

This commit is contained in:
2026-04-02 15:16:13 +08:00
parent 182186e1fb
commit c13ab0cb56
25 changed files with 589 additions and 176 deletions

View File

@@ -84,6 +84,7 @@
<Compile Include="NewDataSQL.cs" />
<Compile Include="NewRoomStatusPush.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="QuanJuVar.cs" />
<Compile Include="RedisTakeCardStatus.cs" />
<Compile Include="RedisTongJiData.cs" />
<Compile Include="RoomStatusRequest.cs" />

View File

@@ -9,6 +9,7 @@ namespace CommonEntity
{
public int Id { get; set; }
public string HostNumber { get; set; }
public int RoomTypeId { get; set; }
}
public class HostRoomNumberMapping
{

13
CommonEntity/QuanJuVar.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Domain;
namespace CommonEntity
{
public class QuanJuVar
{
public static IList<RoomTypeModal> BaoJingUpLoad = new List<RoomTypeModal>();
}
}