12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using wispro.sp.entity.workflowDefine;
- namespace wispro.sp.entity.workflowInstance
- {
- public class stepInstance
- {
- public int Id { get; set; }
- public step Step { get; set; }
- public int stepId { get; set; }
- public workflowInstance workflowInstance { get; set; }
- public int workflowInstanceId { get; set; }
- }
- }
|