12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package com.fdkk.sxz.entity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.Date;
- /**
- * Created by Hb_zzZ on 2020/8/11.
- */
- @Data
- @TableName("tb_renovation_parts_detail")
- public class RenovationPartsDetailEntity extends BaseEntity {
- @TableField("parts_type_id")
- private Long partsTypeId;
- @TableField("parts_color_id")
- private Long partsColorId;
- @TableField("parts_style_id")
- private Long partsStyleId;
- @TableField("parts_classify_id")
- private Long partsClassifyId;
- @TableField("parts_shape_id")
- private Long partsShapeId;
- @TableField("parts_brand_id")
- private Long partsBrandId;
- @TableField("company_id")
- private Long companyId;
- @TableField("key_word")
- private String keyWord;
- @TableField("type")
- private String type;
- @TableField("description")
- private String description;
- @TableField("img")
- private String img;
- @TableField("high_img")
- private String highImg;
- @TableField("path")
- private String path;
- @TableField("mview_path")
- private String mviewPath;
- @TableField("name")
- private String name;
- @TableField("zh_name")
- private String zhName;
- @TableField("is_show")
- private Integer isShow;
- //,0未审核 1审核中,2审核通过,-1审核失败
- @TableField("examine")
- private Integer examine;
- @TableField("examine_time")
- private Date examineTime;
- @TableField("has_toolbag")
- private Integer hasToolbag;
- @TableField("mview_status")
- private Integer mviewStatus;
- @TableField("other_file_url")
- private String otherFileUrl;
- /**
- * 俯视图
- */
- @TableField("bird_path")
- private String birdPath;
- @ApiModelProperty(value = "线下版本使用-style", name = "style")
- @TableField("style")
- private Integer style;
- @ApiModelProperty(value = "线下版本使用-dlc", name = "dlc")
- @TableField("dlc")
- private String dlc;
- }
|