人员按照中文首字母排序
sql:
select * from staff ORDER BY CONVERT(`name` USING gbk)
mybatis-plus:
orderByAsc("convert(" + name + " using gbk)")