19 lines
		
	
	
		
			380 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			380 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.ComponentModel;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace APT.BaseData.Domain.ApiModel.PF
 | 
						|
{
 | 
						|
    [Description("批量更新的实体")]
 | 
						|
    public class BatchUpdateModel<T>
 | 
						|
    {
 | 
						|
        public List<Guid> DataRule { get; set; }
 | 
						|
 | 
						|
        public List<Guid> OrgRule { get; set; }
 | 
						|
 | 
						|
        public List<T> Data { get; set; }
 | 
						|
 | 
						|
    }
 | 
						|
}
 |