1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.fdkankan.site.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2022-10-10
- */
- @Getter
- @Setter
- @TableName("t_project_num")
- public class ProjectNum implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "num_id", type = IdType.AUTO)
- private Integer numId;
- @TableField("project_id")
- private Integer projectId;
- /**
- * 场景码
- */
- @TableField("num")
- private String num;
- @TableField("type")
- private Integer type;
- @TableField("tb_status")
- @TableLogic
- private Integer tbStatus;
- @TableField("create_time")
- private String createTime;
- @TableField("update_time")
- private String updateTime;
- /**
- * 0,锁定,不可继续拍摄,可参照拍摄 1,未锁定,可继续拍摄,不可参照拍摄
- */
- @TableField("editable_flag ")
- private Integer editableFlag ;
- /**
- * 参照拍摄的工程sceneDirName
- */
- @TableField("parent_scene ")
- private String parentScene ;
- }
|