|
@@ -6,12 +6,14 @@ import org.springframework.stereotype.Service;
|
|
|
import thyyxxk.webserver.config.exception.ExceptionEnum;
|
|
|
import thyyxxk.webserver.dao.his.datamodify.YzActOrderMapper;
|
|
|
import thyyxxk.webserver.pojo.ResultVo;
|
|
|
+import thyyxxk.webserver.pojo.datamodify.GetDropdownBox;
|
|
|
import thyyxxk.webserver.pojo.datamodify.YzActOrder;
|
|
|
import thyyxxk.webserver.utils.DateUtil;
|
|
|
import thyyxxk.webserver.utils.ResultVoUtil;
|
|
|
import thyyxxk.webserver.utils.TokenUtil;
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
@@ -71,12 +73,12 @@ public class YzActOrderService {
|
|
|
data.getInstruction(),
|
|
|
data.getModifier());
|
|
|
|
|
|
- dao.update(data);
|
|
|
+ dao.YzUpdate(data);
|
|
|
return ResultVoUtil.success();
|
|
|
}
|
|
|
|
|
|
- public ResultVo<Map<String,Object>> getDropdownBox(){
|
|
|
- Map map = new HashMap();
|
|
|
+ public ResultVo<Map<String, List<GetDropdownBox>>> getDropdownBox(){
|
|
|
+ Map<String, List<GetDropdownBox>> map = new HashMap();
|
|
|
map.put("frequCode",dao.getFrequCode());
|
|
|
map.put("unitCode",dao.getUnitCode());
|
|
|
map.put("supplyCode",dao.getSupplyType());
|