1、电梯服务类新增获取电梯状态接口
2、自定义日志记录器代码调整 3、电梯流程新增测试代码
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user