mybatis --- 使用通用mapper或者mybatis-plus进行映射时,当数据库中有大写字母,自定义映射的字段名。

1.mybatis-plus

    @TableField("encodingASEKey")
    private String encodingASEKey;

2.通用mapper

    @Column(name = "encodingASEKey")
    private String encodingASEKey;
posted @ 2020-12-07 10:27  ??,uunu  阅读(2086)  评论(0编辑  收藏  举报