|
@@ -9,22 +9,25 @@ import lombok.Data;
|
|
|
* Created by Hb_zzZ on 2020/8/11.
|
|
|
*/
|
|
|
@Data
|
|
|
-@TableName( "tb_renovation_parts_type")
|
|
|
+@TableName("tb_renovation_parts_type")
|
|
|
public class RenovationPartsTypeEntity extends BaseEntity {
|
|
|
|
|
|
- @TableField( "parts_id")
|
|
|
+ @TableField("parts_id")
|
|
|
private Long partsId;
|
|
|
|
|
|
- @TableField( "key_word")
|
|
|
+ @TableField("key_word")
|
|
|
private String keyWord;
|
|
|
|
|
|
- @TableField( "type")
|
|
|
+ @TableField("type")
|
|
|
private String type;
|
|
|
|
|
|
- @TableField( "description")
|
|
|
+ @TableField("description")
|
|
|
private String description;
|
|
|
|
|
|
- @TableField( "img")
|
|
|
+ @TableField("img")
|
|
|
private String img;
|
|
|
|
|
|
+ //0不显示,1显示
|
|
|
+ @TableField("is_show")
|
|
|
+ private Integer isShow;
|
|
|
}
|