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;
public class EquipInfoReq : BaseIdReq
{
}
public class PageEquipInfoReq : QueryPageModel
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; } = "";
/// 设备编码;0-充电机;1-电表
public string Code { get; set; } = "";
/// 设备状态
public int? Status { get; set; }
public class AddEquipInfoReq : EquipInfo
public class UpdateEquipInfoReq : AddEquipInfoReq
public class DeleteEquipInfoReq : BaseIdReq