using APT.Infrastructure.Core; using System; using System.Collections.Generic; using System.Text; namespace APT.BaseData.Domain.ApiModel.BD { public class AppEquipSearch : KeywordPageFilter { /// /// 所属部门 /// public string deptId { get; set; } /// /// 器具名称 /// public string appName { get; set; } /// /// 器具编码 /// public string appCode { get; set; } } }