RenovationPartsDetailEntity.java 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package com.fdkk.sxz.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import java.util.Date;
  7. /**
  8. * Created by Hb_zzZ on 2020/8/11.
  9. */
  10. @Data
  11. @TableName("tb_renovation_parts_detail")
  12. public class RenovationPartsDetailEntity extends BaseEntity {
  13. @TableField("parts_type_id")
  14. private Long partsTypeId;
  15. @TableField("parts_color_id")
  16. private Long partsColorId;
  17. @TableField("parts_style_id")
  18. private Long partsStyleId;
  19. @TableField("parts_classify_id")
  20. private Long partsClassifyId;
  21. @TableField("parts_shape_id")
  22. private Long partsShapeId;
  23. @TableField("parts_brand_id")
  24. private Long partsBrandId;
  25. @TableField("company_id")
  26. private Long companyId;
  27. @TableField("key_word")
  28. private String keyWord;
  29. @TableField("type")
  30. private String type;
  31. @TableField("description")
  32. private String description;
  33. @TableField("img")
  34. private String img;
  35. @TableField("high_img")
  36. private String highImg;
  37. @TableField("path")
  38. private String path;
  39. @TableField("mview_path")
  40. private String mviewPath;
  41. @TableField("name")
  42. private String name;
  43. @TableField("zh_name")
  44. private String zhName;
  45. @TableField("is_show")
  46. private Integer isShow;
  47. //,0未审核 1审核中,2审核通过,-1审核失败
  48. @TableField("examine")
  49. private Integer examine;
  50. @TableField("examine_time")
  51. private Date examineTime;
  52. @TableField("has_toolbag")
  53. private Integer hasToolbag;
  54. @TableField("mview_status")
  55. private Integer mviewStatus;
  56. @TableField("other_file_url")
  57. private String otherFileUrl;
  58. /**
  59. * 俯视图
  60. */
  61. @TableField("bird_path")
  62. private String birdPath;
  63. @ApiModelProperty(value = "线下版本使用-style", name = "style")
  64. @TableField("style")
  65. private Integer style;
  66. @ApiModelProperty(value = "线下版本使用-dlc", name = "dlc")
  67. @TableField("dlc")
  68. private String dlc;
  69. }