d_sms_service/APT.BaseData.Domain/ApiModel/BD/MeterNodeQuery.cs

22 lines
524 B
C#
Raw Permalink Normal View History

2024-10-28 13:45:58 +08:00
using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.Text;
namespace APT.BaseData.Domain.ApiModel.BD
{
public class MeterNodeQuery:BaseFilter
{
/// <summary>
/// 菜单参数
/// </summary>
public string menuFormParam { get; set; }
/// <summary>
/// 查询条件
/// </summary>
public string search { get; set; }
public string parentId { get; set; }
public int meterType { get; set; }
}
}