12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow
- {
- public class FlowStepView
- {
- public string processid{ get; set; }
- public string flowid{ get; set; }
- public string comment{ get; set; }
- public string donetime{ get; set; }
- public string workby{ get; set; }
- public string workname{ get; set; }
- public string createby{ get; set; }
- public string createname{ get; set; }
- public string pendingby{ get; set; }
- public string pendingname{ get; set; }
- public int? num{ get; set; }
- public string pname{ get; set; }
- public string createtime{ get; set; }
- public string anote{ get; set; }
- public int? pid { get; set; }
- }
- }
|