| 123456789101112131415161718192021 |
- using Abp.Domain.Entities;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace VberZero.Workflow.Persistence
- {
- [Table("Sys_Wf_ExtensionAttributes")]
- public class WorkflowExtensionAttributeInfo : Entity<string>
- {
- public string ExecutionPointerId { get; set; }
- [ForeignKey("ExecutionPointerId")]
- public WorkflowExecutionPointerInfo ExecutionPointer { get; set; }
- [MaxLength(100)]
- public string AttributeKey { get; set; }
- public string AttributeValue { get; set; }
- }
- }
|