namespace GxPress.Request.SystemLabel { /// /// /// public class SystemLabelRequest:Common.Page.PageParameter { /// /// 0 标签 1 明栏 /// /// public int TypeValue{get;set;} } /// /// 修改系统标签 /// public class SystemLabelUpRequest { /// /// /// /// public int Id { get; set; } /// /// 标签名称 /// /// public string LabelName { get; set; } /// /// 标签名称描述 /// /// public string LabelNameDescribe { get; set; } /// /// 备注 /// /// public string Remark { get; set; } /// /// 是否禁用1 设置 2取消 /// /// public int IsDisable { get; set; } /// /// 排序 /// /// public int Sort { get; set; } /// /// 是否跳转 1 设置 2取消 /// /// public int IsSkip { get; set; } /// /// 是否分页 1 设置 2取消 /// /// public int IsPage { get; set; } /// /// 分页条数 /// /// public int PageSize { get; set; } /// /// 路径 /// /// public string ControllerUrl { get; set; } /// /// 路径 /// /// public string ActionUrl { get; set; } /// /// 资源类型 /// /// public int ResourceType { get; set; } /// /// 样式类型 /// /// public string StyleType { get; set; } /// /// 是否显示标签名称 1 设置 2取消 /// /// public int IsShowLabelName { get; set; } /// /// 是否明栏 1 设置 2取消 /// /// public int IsStarLable { get; set; } } }