| | |
| | | public class Flows extends Model<Flows> { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /* |
| | | * 主键 |
| | | * */ |
| | | private String id; |
| | | |
| | | /* |
| | | * 创建人 |
| | | * */ |
| | | @TableField("user_id") |
| | | private String userId; |
| | | |
| | | /* |
| | | * 业务id |
| | | * */ |
| | | @TableField("business_id") |
| | | private String businessId; |
| | | |
| | | /* |
| | | * 流程id |
| | | * */ |
| | | @TableField("workflow_id") |
| | | private String workflowId; |
| | | |
| | | /* |
| | | * 流程状态 |
| | | * */ |
| | | private ActivitiStatus status; |
| | | |
| | | /* |
| | | * 业务类型 |
| | | * */ |
| | | @TableField("business_type") |
| | | private ActivitiBusinessType businessType; |
| | | |
| | | /* |
| | | * 业务类型中文名 |
| | | * */ |
| | | private transient String businessTypeStr; |
| | | /* |
| | | * 流程名 |
| | | * */ |
| | | private transient String processName; |
| | | |
| | | private transient String nextInfo; |
| | | |
| | | |