File was renamed from flowable/src/main/java/com/ycl/domain/entity/FlowLog.java |
| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ycl.common.enums.business.FlowLogEventTypeEnum; |
| | | import com.ycl.common.enums.business.ProcessLogEventTypeEnum; |
| | | import com.ycl.system.domain.base.AbsEntity; |
| | | import lombok.Data; |
| | | |
| | |
| | | * @since 2025-01-02 |
| | | */ |
| | | @Data |
| | | @TableName("t_flow_log") |
| | | public class FlowLog extends AbsEntity { |
| | | @TableName("t_process_log") |
| | | public class ProcessLog extends AbsEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | |
| | | @TableField("event_type") |
| | | /** 事件日志类型 */ |
| | | private FlowLogEventTypeEnum eventType; |
| | | private ProcessLogEventTypeEnum eventType; |
| | | |
| | | @TableField("project_id") |
| | | /** 项目id */ |
| | | private Long projectId; |
| | | |
| | | @TableField("flow_ins_id") |
| | | @TableField("process_ins_id") |
| | | /** 流程实例id */ |
| | | private String flowInsId; |
| | | private String processInsId; |
| | | |
| | | @TableField("user_id") |
| | | /** 产生日志的人/或其它 */ |