pubDicType.ts 930 B

12345678910111213141516171819202122
  1. /*
  2. * @Author: code4eat awesomedema@gmail.com
  3. * @Date: 2023-03-03 17:08:00
  4. * @LastEditors: code4eat awesomedema@gmail.com
  5. * @LastEditTime: 2023-03-06 16:12:47
  6. * @FilePath: /KC-MiddlePlatform/mock/pubDicType.ts
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. */
  9. import { Request, Response } from 'express';
  10. const getMenu = (req: Request, res: Response) => {
  11. const result = { "status": 200, "msg": "返回成功", "data": { "totalCount": 22, "pageSize": 10, "totalPage": 3, "current": 1, "list": [{ "dictId": "1", "dictName": "资质项目类型", "dictType": "QUALIFICATION_PROJECT_TYPE", "status": "1", "remark": "资质类型列表", "hospId": "0", "hospName": "所有院区" }] } }
  12. return res.json(result);
  13. };
  14. export default {
  15. //'GET /gateway/sysdictdata/getDictType': getMenu,
  16. };