30 lines
		
	
	
		
			605 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			605 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace APT.BaseData.Domain.ApiModel.LG
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// 控件配置模型
 | 
						|
    /// </summary>
 | 
						|
    public class LgOprateModel
 | 
						|
    {
 | 
						|
        public string ID { get; set; }
 | 
						|
        public string FormCode { get; set; }
 | 
						|
 | 
						|
        public string FormName { get; set; }
 | 
						|
 | 
						|
        public string BtnCode { get; set; }
 | 
						|
 | 
						|
        public string BtnName { get; set; }
 | 
						|
 | 
						|
        public string UserId { get; set; }
 | 
						|
 | 
						|
        public string UserCode { get; set; }
 | 
						|
 | 
						|
        public string Datetime { get; set; }
 | 
						|
        public string OrgId { get; set; }
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
}
 |