using System;
using System.ComponentModel.DataAnnotations;
using Model.Base;
namespace Dto.Admin
{
///
/// 添加
///
public class EditAppModuleDto
{
///
/// ID
///
public int id { 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; }
}
}