using Newtonsoft.Json;
namespace Vo.Admin
{
///
/// 列表
///
public class GetAppModuleListVo
{
///
/// ID
///
public int id { get; set; }
///
/// 创建时间
///
public DateTime? createTime { get; set; }
///
/// 更新时间
///
public DateTime? updateTime { get; set; }
///
/// 创建人
///
public string createBy { get; set; }
///
/// 更新人
///
public string updateBy { get; set; }
///
/// 模块名称
///
public string moduleName { get; set; }
///
/// 模块介绍
///
public string moduleDetail { get; set; }
///
/// 状态
///
public int status { get; set; }
///
/// 模块功能
///
public string? moduleFeature { get; set; }
///
/// 使用厂商
///
public string? factoryOwner { get; set; }
///
/// 支付系统
///
public string[] systemSupport { get; set; }
}
}