1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow
- {
- public class FlowInfoView
- {
- public string pname { get; set; }
- public int? num { get; set; }
- public int? pid { get; set; }
- public string url { get; set; }
- public int? flowtp { get; set; }
- public string auditnote { get; set; }
- public List<FlowNextActionView> nextactions;
- public FlowInfoView()
- {
- nextactions = new List<FlowNextActionView>();
- }
- }
- }
|