zhangherong
2025-06-25 23855599412c4d61b38d78f0f3abd3430a48b5b1
lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/entity/PermissionStream.java
对比新文件
@@ -0,0 +1,58 @@
package org.jeecg.modules.dnc.entity;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonIgnore;
import io.swagger.annotations.Api;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
@Data
@NoArgsConstructor
@TableName(value = "nc_permission_stream")
@Api(value = "鐢ㄦ埛鏉冮檺")
public class PermissionStream {
    @TableId(value = "stream_id")
    private String streamId;
    //浜у搧id
    @TableField(value = "product_id")
    private String productId;
    //閮ㄤ欢id
    @TableField(value = "component_id")
    private String componentId;
    //闆朵欢id
    @TableField(value = "parts_id")
    private String partsId;
    //宸ュ簭鐗堟湰id
    @TableField(value = "process_version_id")
    private String processVersionId;
    //宸ュ簭id
    @TableField(value = "process_id")
    private String processId;
    //宸ユid
    @TableField(value = "step_id")
    private String stepId;
    //鐢ㄦ埛id
    @TableField(value = "user_id")
    private String userId;
    //DNC閮ㄩ棬id
    @TableField(value = "depart_id")
    private String departId;
    @JsonIgnore
    @TableField(value = "create_time", select = false, fill = FieldFill.INSERT)
    private Date createTime;
    @JsonIgnore
    @TableField(value = "update_time", select = false, fill = FieldFill.UPDATE)
    private Date updateTime;
    @JsonIgnore
    @TableField(value = "create_by", select = false, fill = FieldFill.INSERT)
    private String createBy;
    @JsonIgnore
    @TableField(value = "update_by", select = false, fill = FieldFill.UPDATE)
    private String updateBy;
    @JsonIgnore
    @TableLogic
    @TableField(value = "delete_flag", select = false)
    private Integer deleteFlag = 0;
}