1、电梯服务类新增获取电梯状态接口

2、自定义日志记录器代码调整
3、电梯流程新增测试代码
This commit is contained in:
yang.lee
2023-11-24 21:22:26 +08:00
parent e497caf393
commit 1bd3d5a6c2
10 changed files with 230 additions and 72 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Queries
{
/// <summary>
/// 电梯状态查询输入参数
/// </summary>
public class ElevatorStatusQuery
{
/// <summary>
/// 设备名称
/// </summary>
public string DevName { get; set; }
/// <summary>
/// 标签集合
/// </summary>
public IEnumerable<string> tags { get; set; }
}
}