|
@ -1248,4 +1248,13 @@ public class PatientNoLoginEndPoint extends EnvelopRestEndpoint {
|
|
|
|
|
|
return success(prescriptionService.findDictById(dictId));
|
|
|
}
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.PatientNoLogin.updateDictById)
|
|
|
@ApiOperation(value = "根据id修改配置字典", notes = "根据id修改配置字典")
|
|
|
public Envelop updateDictById(@ApiParam(name = "dictId", value = "dictId")
|
|
|
@RequestParam(value = "dictId", required = true)String dictId,
|
|
|
@ApiParam(name = "dictValue", value = "dictId")
|
|
|
@RequestParam(value = "dictValue", required = true)String dictValue) throws Exception{
|
|
|
|
|
|
return success(prescriptionService.updateDictById(dictId,dictValue));
|
|
|
}
|
|
|
}
|