You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							744 B
						
					
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							744 B
						
					
					
				using System.Collections.Generic;
 | 
						|
using FactorySystemModel.ResponseModel;
 | 
						|
 | 
						|
namespace FactorySystemModel.RequestModel
 | 
						|
{
 | 
						|
    public class MaterialTeamworkQuery : MaterialTeamworkRow
 | 
						|
    {
 | 
						|
        public MaterialTeamworkQuery()
 | 
						|
        {
 | 
						|
            FIsUser = true;
 | 
						|
        }
 | 
						|
 | 
						|
        // 用户
 | 
						|
        public int FUserID { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Desc:发起时间的时间段
 | 
						|
        /// Default:
 | 
						|
        /// Nullable:True
 | 
						|
        /// </summary>
 | 
						|
        public List<string> FDateRange { get; set; }
 | 
						|
 | 
						|
        public int FPageIndex { get; set; }
 | 
						|
 | 
						|
        public int FPageSize { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// 是否根据全选出数据
 | 
						|
        /// </summary>
 | 
						|
        public bool FIsUser { get; set; }
 | 
						|
    }
 | 
						|
} |