22 lines
524 B
C#
22 lines
524 B
C#
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; }
|
|
}
|
|
}
|