"use strict"; var common_request = require("../common/request.js"); let request = new common_request.Request().http; function getFamousPrescribeList(data) { return request("/app/index/getFamousPrescribeList", data, "GET"); } function getFamousPrescribeById(data) { return request("/app/index/getFamousPrescribeById", data, "GET"); } function getQuestionsList(data) { return request("/app/index/getQuestionsList", data, "GET"); } function getQuestionsById(data) { return request("/app/index/getQuestionsById", data, "GET"); } function getMedicatedFoodList(data) { return request("/app/index/getMedicatedFoodList", data, "GET"); } function getMedicatedFoodById(data) { return request("/app/index/getMedicatedFoodById", data, "GET"); } function getVesselList(data) { return request("/app/index/getVesselList", data, "GET"); } function getVesselById(data) { return request("/app/index/getVesselById", data, "GET"); } function getChineseMedicineList(data) { return request("/app/index/getChineseMedicineList", data, "GET"); } function getChineseMedicineById(data) { return request("/app/index/getChineseMedicineById", data, "GET"); } exports.getChineseMedicineById = getChineseMedicineById; exports.getChineseMedicineList = getChineseMedicineList; exports.getFamousPrescribeById = getFamousPrescribeById; exports.getFamousPrescribeList = getFamousPrescribeList; exports.getMedicatedFoodById = getMedicatedFoodById; exports.getMedicatedFoodList = getMedicatedFoodList; exports.getQuestionsById = getQuestionsById; exports.getQuestionsList = getQuestionsList; exports.getVesselById = getVesselById; exports.getVesselList = getVesselList;