1 Star 0 Fork 0

活字格开发实验室/插件:客户端缓存操作工具库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Retrieve_LocalCache.cs 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
using GrapeCity.Forguncy.Commands;
using GrapeCity.Forguncy.Plugin;
using System.Collections.Generic;
using System.ComponentModel;
namespace FrontendCacheCommand
{
[Icon("pack://application:,,,/FrontendCacheCommand;component/Resources/IconDownload.png")]
[Category("客户端缓存")]
[OrderWeight(310)]
public class Retrieve_LocalCache : Command
{
[FormulaProperty()]
[DisplayName("键(大小写敏感)")]
[SearchableProperty]
[OrderWeight(1)]
public object KeyString { get; set; }
[FormulaProperty()]
[DisplayName("期望的版本")]
[SearchableProperty]
[OrderWeight(2)]
public object VersionString { get; set; }
[FormulaProperty(true)]
[DisplayName("目标单元格")]
[SearchableProperty]
[OrderWeight(3)]
public object TargetCell { get; set; }
public override string ToString()
{
return "从客户端缓存中读取到单元格(兼容模式)";
}
public override CommandScope GetCommandScope()
{
return CommandScope.All;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/low-code-dev-lab/lowcode-plugin-frontend-cache.git
git@gitee.com:low-code-dev-lab/lowcode-plugin-frontend-cache.git
low-code-dev-lab
lowcode-plugin-frontend-cache
插件:客户端缓存操作工具库
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385