using Newtonsoft.Json;
namespace Vo.Admin
{
///
/// 详情
///
public class GetAppProjectParamQueryVo
{
///
/// ID
///
public int id { get; set; }
///
/// APP项目ID
///
public int appId { get; set; }
///
/// 功能模块ID
///
public int moduleId { get; set; }
///
/// 参数名称
///
public string paramTitle { get; set; }
///
/// 参数名
///
public string paramName { get; set; }
///
/// 参数值
///
public string paramValue { get; set; }
}
}