stepInputValue.cs 437 B

123456789101112131415161718192021
  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 stepInputValue
  10. {
  11. public int Id { get; set; }
  12. public inputValueSetting valueSetting { get; set; }
  13. public int valueSettingId{get;set;}
  14. public string value { get; set; }
  15. }
  16. }