123456789101112131415161718192021 |
- 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 workflowInstance
- {
- public int Id { get; set; }
- public workflow workflow { get; set; }
- public int workflowId { get; set; }
- public int ObjectId { get; set; }
- }
- }
|