stepInstance.cs 483 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using wispro.sp.entity.workflowDefine;
  7. namespace wispro.sp.entity.workflowInstance
  8. {
  9. public class stepInstance
  10. {
  11. public int Id { get; set; }
  12. public step Step { get; set; }
  13. public int stepId { get; set; }
  14. public workflowInstance workflowInstance { get; set; }
  15. public int workflowInstanceId { get; set; }
  16. }
  17. }