12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow
- {
- public class FlowNextActionView
- {
- public string actionid { get; set; }
- public string aname { get; set; }
- public string pname { get; set; }
- public int? flowtp { get; set; }
- public int? sort { get; set; }
- public string afuns { get; set; }
- public string limitfuns { get; set; }
- public string flowclname { get; set; }
- public int? userchosemode { get; set; }
- public string pusertype { get; set; }
- }
- }
|