1.实体类上加注解:
    @TableName(_value = “app_config.tbl_app_advertise_image_property”, autoResultMap = true)
    image.png
    2.实体类字段上加注解(该字段存储在数据库中是json字符串格式):
    @TableField
    (typeHandler = FastjsonTypeHandler.class)_
    image.png
    3.未添加注解前的效果(只能返回字符串):
    image.png
    4.添加注解后的效果:
    image.png