ProjectNum.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.fdkankan.site.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. *
  14. * </p>
  15. *
  16. * @author
  17. * @since 2022-10-10
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_project_num")
  22. public class ProjectNum implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "num_id", type = IdType.AUTO)
  25. private Integer numId;
  26. @TableField("project_id")
  27. private Integer projectId;
  28. /**
  29. * 场景码
  30. */
  31. @TableField("num")
  32. private String num;
  33. @TableField("type")
  34. private Integer type;
  35. @TableField("tb_status")
  36. @TableLogic
  37. private Integer tbStatus;
  38. @TableField("create_time")
  39. private String createTime;
  40. @TableField("update_time")
  41. private String updateTime;
  42. /**
  43. * 0,锁定,不可继续拍摄,可参照拍摄 1,未锁定,可继续拍摄,不可参照拍摄
  44. */
  45. @TableField("editable_flag ")
  46. private Integer editableFlag ;
  47. /**
  48. * 参照拍摄的工程sceneDirName
  49. */
  50. @TableField("parent_scene ")
  51. private String parentScene ;
  52. }