WorkflowExtensionAttributeInfo.cs 592 B

123456789101112131415161718192021
  1. using Abp.Domain.Entities;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace VberZero.Workflow.Persistence
  5. {
  6. [Table("Sys_Wf_ExtensionAttributes")]
  7. public class WorkflowExtensionAttributeInfo : Entity<string>
  8. {
  9. public string ExecutionPointerId { get; set; }
  10. [ForeignKey("ExecutionPointerId")]
  11. public WorkflowExecutionPointerInfo ExecutionPointer { get; set; }
  12. [MaxLength(100)]
  13. public string AttributeKey { get; set; }
  14. public string AttributeValue { get; set; }
  15. }
  16. }