All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.schoolwow.workflow.entity.WorkFlowInstanceHistory Maven / Gradle / Ivy

package cn.schoolwow.workflow.entity;

import cn.schoolwow.quickdao.annotation.*;

import java.time.LocalDateTime;

@Comment("工作流实例历史记录")
public class WorkFlowInstanceHistory {
    @Id
    private long id;

    @Comment("流程实例")
    @ForeignKey(table = WorkFlowInstance.class)
    private long workFlowInstanceId;

    @Comment("分配人")
    private String assigner;

    @Comment("记录")
    @ColumnType("text")
    private String message;

    @TableField(createdAt = true)
    private LocalDateTime createdAt;

    @TableField(updatedAt = true)
    private LocalDateTime updatedAt;

    public long getId() {
        return id;
    }

    public void setId(long id) {
        this.id = id;
    }

    public long getWorkFlowInstanceId() {
        return workFlowInstanceId;
    }

    public void setWorkFlowInstanceId(long workFlowInstanceId) {
        this.workFlowInstanceId = workFlowInstanceId;
    }

    public String getAssigner() {
        return assigner;
    }

    public void setAssigner(String assigner) {
        this.assigner = assigner;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public LocalDateTime getCreatedAt() {
        return createdAt;
    }

    public void setCreatedAt(LocalDateTime createdAt) {
        this.createdAt = createdAt;
    }

    public LocalDateTime getUpdatedAt() {
        return updatedAt;
    }

    public void setUpdatedAt(LocalDateTime updatedAt) {
        this.updatedAt = updatedAt;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy