using System; using System.Collections.Generic; namespace APT.BaseData.Domain.ApiModel.LG { /// /// 控件配置模型 /// 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; } } }