using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace CallCenterApi.Interface.Models.Input
{
public class ModuleFunctionInput
{
///
/// 父节点Id
///
public int ParentId { get; set; } = 0;
///
/// 节点名称
///
public string Name { get; set; }
/////
///// 节点地址Controller
/////
//public string Controller { get; set; }
/////
///// 节点地址Action
/////
//public string Action { get; set; }
///
/// Url地址
///
public string Url { get; set; }
///
/// 是否启用节点 启用:true; 不启用:false;
///
public bool Flag { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 节点类型 菜单:1; 页面:0;
///
public int Type { get; set; }
public string Controller { get; set; }
public string Action { get; set; }
public string Code { get; set; }
public string ParentCode { get; set; }
}
}