yzh
2022-05-06 6b902884b05db6d2d8ce32ca615295e8ae9003e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
using System;
 
namespace Model
{
 
    //流程定义表
    public class SysFlow
  {
        public string Id { get; set; }
 
        public string FlowCode { get; set; }
 
        public string FlowName { get; set; }
 
        public string FlowGroup { get; set; }
 
        //0-禁用;1-启用
        public int Status { get; set; }
  }
}