You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using Entity.DbModel.Station ;
using HybirdFrameworkCore.Entity ;
namespace Entity.Dto.Req ;
///<summary>
///设备信息表
///</summary>
public class EquipInfoReq
{
}
public class PageEquipInfoReq : QueryPageModel
{
/// <summary>
/// Desc:设备编码
/// Default:
/// Nullable:True
/// </summary>
public string? Code { get ; set ; }
/// <summary>
/// Desc:设备名称
/// Default:
/// Nullable:True
/// </summary>
public string? Name { get ; set ; }
/// <summary>
/// Desc:设备状态;0-未知; 1-正常; 2-报警; 3-停用
/// Default:
/// Nullable:True
/// </summary>
public int? Status { get ; set ; }
}
public class AddEquipInfoReq : EquipInfo
{
}
public class UpdateEquipInfoReq : AddEquipInfoReq
{
}
public class DeleteEquipInfoReq : BaseIdReq
{
}