24 lines
		
	
	
		
			553 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			553 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using APT.Infrastructure.Core;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace APT.BaseData.Domain.ApiModel.BD
 | 
						|
{
 | 
						|
    public class AppEquipSearch : KeywordPageFilter
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// 所属部门
 | 
						|
        /// </summary>
 | 
						|
        public string deptId { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// 器具名称
 | 
						|
        /// </summary>
 | 
						|
        public string appName { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// 器具编码
 | 
						|
        /// </summary>
 | 
						|
        public string appCode { get; set; }
 | 
						|
    }
 | 
						|
}
 |