123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.fdkankan.scene.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Getter;
- import lombok.Setter;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 场景资源和协作用户关联表
- * </p>
- *
- * @author
- * @since 2022-01-20
- */
- @Getter
- @Setter
- @TableName("t_scene_resource_cooperation")
- public class SceneResourceCooperation implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 场景资源id
- */
- @TableField("scene_resource_id")
- private Long sceneResourceId;
- /**
- * 协作用户的id
- */
- @TableField("scene_cooperation_id")
- private Long sceneCooperationId;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 更新时间
- */
- @TableField("update_time")
- private Date updateTime;
- /**
- * 记录的状态,A: 生效,I: 禁用
- */
- @TableField("rec_status")
- @TableLogic(value = "A", delval = "I")
- private String recStatus;
- }
|