2024-12-30 17:06:52 +08:00
|
|
|
package com.ruoyi.flowable.domain;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
2025-01-08 14:33:01 +08:00
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
2024-12-30 17:06:52 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 模型部署对象 wf_model_procdef
|
|
|
|
|
*
|
|
|
|
|
* @author fengcheng
|
|
|
|
|
* @date 2024-07-11
|
|
|
|
|
*/
|
2025-01-08 14:33:01 +08:00
|
|
|
@Data
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
2024-12-30 17:06:52 +08:00
|
|
|
public class WfModelProcdef extends BaseEntity
|
|
|
|
|
{
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** 模型ID */
|
|
|
|
|
private String modelId;
|
|
|
|
|
|
|
|
|
|
/** 部署id */
|
|
|
|
|
private String procdefId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 表单类型
|
|
|
|
|
*/
|
|
|
|
|
private String formType;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 表单创建路径
|
|
|
|
|
*/
|
|
|
|
|
private String formCreatePath;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 表单查看路由
|
|
|
|
|
*/
|
|
|
|
|
private String formViewPath;
|
|
|
|
|
}
|
|
|
|
|
|