mh_lcmk_sms_service/APT.BaseData.Domain/ApiModel/LG/LgOprateModel.cs

30 lines
605 B
C#
Raw Permalink Normal View History

2024-07-12 16:37:09 +08:00
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; }
}
}