数据权限条件表达式,第二数据源从HttpItems取值,当前用户改用userId
大石头 authored at 2020-02-04 16:24:09
322.00 B
NewLife.Cube
using System;
using System.Collections;
using NewLife.Data;

namespace NewLife.Cube.Extensions
{
    class ItemsExtend : IExtend
    {
        public IDictionary Items { get; set; }

        public Object this[String key]
        {
            get => Items[key];
            set => Items[key] = value;
        }
    }
}