|
|
@@ -41,4 +41,20 @@ public interface MdmServerFeign {
|
|
|
*/
|
|
|
@PostMapping(Constant.MDM_COMMON+"/get_setting_value")
|
|
|
ResponseResultVO getSettingValue(@RequestBody Map<String, Object> param);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @desc : 数据字典
|
|
|
+ * @author : 洪旭东
|
|
|
+ * @date : 2024-03-25 15:29
|
|
|
+ */
|
|
|
+ @PostMapping(Constant.MST_DICTIONARY_DATA+"/{id}")
|
|
|
+ ResponseResultVO<JSONObject> getDictionaryDataById(@PathVariable Long id);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @desc : 计量单位
|
|
|
+ * @author : 洪旭东
|
|
|
+ * @date : 2024-03-25 15:29
|
|
|
+ */
|
|
|
+ @PostMapping(Constant.MST_MODEL_UNITS+"/{id}")
|
|
|
+ ResponseResultVO<JSONObject> getModelUnits(@PathVariable Long id);
|
|
|
}
|