1 Star 0 Fork 1

apiumc/工作流引擎

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
DesignAttribute.cs 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
apiumc 提交于 2024-04-12 23:37 . BPM Init
using System;
using System.Collections.Generic;
using System.Text;
namespace UMC.WorkFlow
{
/// <summary>
/// 标志属性为设置属性
/// </summary>
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class DesignAttribute : System.Attribute
{
/// <summary>
/// 属性文本说明
/// </summary>
public string Caption { get; set; }
/// <summary>
/// 商品说明
/// </summary>
public string Explain { get; set; }
/// <summary>
/// 是否支持Value转Text
/// </summary>
public bool IsValueToText { get; set; }
/// <summary>
/// 设计属性
/// </summary>
public string ArgumentValue { get; set; }
/// <summary>
/// 参数类型
/// </summary>
public ArgumentType ArgumentType { get; set; }
}
/// <summary>
/// 设置值转化文本接口
/// </summary>
public interface IDesignValueToText
{
string GetText(String name, object value);
}
/// <summary>
/// 属性类型默认设计
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class DefaultDesignAttribute : System.Attribute
{
/// <summary>
/// 设计属性
/// </summary>
public string ArgumentValue { get; set; }
/// <summary>
/// 参数类型
/// </summary>
public ArgumentType ArgumentType { get; set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/apiumc/BPM.git
git@gitee.com:apiumc/BPM.git
apiumc
BPM
工作流引擎
master

搜索帮助