package org.jeecg.modules.dnc.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
import java.util.Date;
|
|
@Data
|
@NoArgsConstructor
|
@TableName(value = "nc_permission_stream")
|
public class PermissionStream {
|
@TableId(value = "stream_id")
|
private String streamId;
|
@TableField(value = "product_id")
|
private String productId;
|
@TableField(value = "component_id")
|
private String componentId;
|
@TableField(value = "parts_id")
|
private String partsId;
|
@TableField(value = "user_id")
|
private String userId;
|
@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_user", select = false, fill = FieldFill.INSERT)
|
private String createUser;
|
@JsonIgnore
|
@TableField(value = "update_user", select = false, fill = FieldFill.UPDATE)
|
private String updateUser;
|
@JsonIgnore
|
@TableLogic
|
@TableField(value = "delete_flag", select = false)
|
private Integer deleteFlag = 0;
|
}
|