# DictDemo **Repository Path**: Tuan88/dict-demo ## Basic Information - **Project Name**: DictDemo - **Description**: 1.响应接口枚举dict数据aop自动转换 2.加载静态enum枚举类的资源进行提供接口 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-22 - **Last Updated**: 2025-01-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README (接口响应动态翻译字典)接口Result或分页返回的对象进行aop,对用需要翻译的字段进行翻译添加翻译后字段 数据来源是数据库,进行缓存到redis中,支持多数据源,静态枚举加载 ![输入图片说明](https://foruda.gitee.com/images/1724380234428383961/54b6cb48_5562811.png "屏幕截图") 测试返回对象 ![输入图片说明](image.png) ``` { "success": true, "message": "", "code": 200, "result": { "name": "小孩", "age": 7, "nowTime": "2024-08-23 10:22:04", "status": "1", "msgType": "1", "depart": "57197590443c44f083d42ae24ef26a2c", "status_dictText": "正常", "msgType_dictText": "文本", "depart_dictText": "研发部" }, "timestamp": 1724379724609 } ``` 测试返回分页 ![输入图片说明](https://foruda.gitee.com/images/1724380263725891333/c283386d_5562811.png "屏幕截图") ``` { "success": true, "message": "", "code": 200, "result": { "records": [ { "name": "小孩", "age": 7, "nowTime": "2024-08-23 10:25:24", "status": "1", "msgType": "1", "depart": "4f1765520d6346f9bd9c79e2479e5b12", "status_dictText": "正常", "msgType_dictText": "文本", "depart_dictText": "市场部" }, { "name": "小孩哥", "age": 13, "nowTime": "2024-08-23 10:25:24", "status": "2", "msgType": "1", "depart": "63775228b7b041a99825f79760590b7d", "status_dictText": "冻结", "msgType_dictText": "文本", "depart_dictText": "研发经理" }, { "name": "大哥", "age": 17, "nowTime": "2024-08-23 10:25:24", "status": "2", "msgType": "2", "depart": "63775228b7b041a99825f79760590b7d", "status_dictText": "冻结", "msgType_dictText": "富文本", "depart_dictText": "研发经理" } ], "total": 10, "size": 10, "current": 1, "orders": [], "optimizeCountSql": true, "searchCount": true, "maxLimit": null, "countId": null, "pages": 1 }, "timestamp": 1724379924850 } ``` 测试静态字典获取 ![输入图片说明](https://foruda.gitee.com/images/1724380286856346926/18c6e163_5562811.png "屏幕截图") ``` { "success": true, "message": "", "code": 200, "result": { "level": [ { "value": "first_level", "text": "一级", "color": null }, { "value": "second_level", "text": "二级", "color": null }, { "value": "third_level", "text": "三级", "color": null }, { "value": "four_level", "text": "四级", "color": null }, { "value": "fifth_level", "text": "五级", "color": null }, { "value": "six_level", "text": "六级", "color": null } ], "Sex": [ { "value": "Male", "text": "男", "color": null }, { "value": "Female", "text": "女", "color": null } ] }, "timestamp": 1724380021747 } ```